From c2896329ce9442559334db1bf966d62d6943fe1a Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Wed, 17 Mar 2021 07:01:15 +0000 Subject: [PATCH] win32*.sh: use the right target when building the tests We switched from make to ninja but we're using the wrong target when building the tests. "ninja test" tries to actually run the tests. We'll have to use "ninja tests" when targeting Windows. Signed-off-by: Lucian Petrut --- win32_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32_build.sh b/win32_build.sh index 3a11b942decf8..34e87f54348e8 100755 --- a/win32_build.sh +++ b/win32_build.sh @@ -185,7 +185,7 @@ if [[ -z $SKIP_BUILD ]]; then # TODO: do we actually need the ceph compression libs? ninja_targets+=" compressor ceph_lz4 ceph_snappy ceph_zlib ceph_zstd" if [[ -z $SKIP_TESTS ]]; then - ninja_targets+=" test ceph_radosacl ceph_scratchtool" + ninja_targets+=" tests ceph_radosacl ceph_scratchtool" fi ninja -v $ninja_targets 2>&1 | tee "${BUILD_DIR}/build.log" -- 2.39.5