[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 10/16] meson: Use -b to ignore CR vs. CR-LF issues on Windows
From: |
Yonggang Luo |
Subject: |
[PATCH 10/16] meson: Use -b to ignore CR vs. CR-LF issues on Windows |
Date: |
Wed, 9 Sep 2020 03:48:14 +0800 |
On windows, a difference in line endings causes testsuite failures
complaining that every single line in files such as
'tests/qapi-schemadoc-good.texi' is wrong. Fix it by adding -b to diff.
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
---
tests/qapi-schema/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qapi-schema/meson.build b/tests/qapi-schema/meson.build
index c87d141417..f1449298b0 100644
--- a/tests/qapi-schema/meson.build
+++ b/tests/qapi-schema/meson.build
@@ -220,6 +220,6 @@ qapi_doc = custom_target('QAPI doc',
# "full_path()" needed here to work around
# https://github.com/mesonbuild/meson/issues/7585
-test('QAPI doc', diff, args: ['-u', files('doc-good.texi'),
qapi_doc[0].full_path()],
+test('QAPI doc', diff, args: ['-b', '-u', files('doc-good.texi'),
qapi_doc[0].full_path()],
depends: qapi_doc,
suite: ['qapi-schema', 'qapi-doc'])
--
2.28.0.windows.1
- Re: [PATCH 05/16] tests: disable /char/stdio/* tests in test-char.c on win32, (continued)
- [PATCH 06/16] ci: Enable msys2 ci in cirrus, Yonggang Luo, 2020/09/08
- [PATCH 07/16] tests: Trying fixes test-replication.c on msys2/mingw., Yonggang Luo, 2020/09/08
- [PATCH 08/16] block: get file-win32.c handle locking option consistence with file-posix.c, Yonggang Luo, 2020/09/08
- [PATCH 09/16] osdep: These function are only available on Non-Win32 system., Yonggang Luo, 2020/09/08
- [PATCH 10/16] meson: Use -b to ignore CR vs. CR-LF issues on Windows,
Yonggang Luo <=
- [PATCH 11/16] meson: disable crypto tests are empty under win32, Yonggang Luo, 2020/09/08
[PATCH 12/16] meson: remove empty else and duplicated gio deps, Yonggang Luo, 2020/09/08
[PATCH 13/16] vmstate: Fixes test-vmstate.c on msys2/mingw, Yonggang Luo, 2020/09/08