From: Mostyn Bramley-Moore Date: Mon, 9 Dec 2024 02:08:34 +0000 (+0100) Subject: ci: make skipped tests more obvious (#2430) X-Git-Tag: v3.7.8~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4757f1eb251e41fb31f8305250a97877194efd5f;p=thirdparty%2Flibarchive.git ci: make skipped tests more obvious (#2430) Previously skipped tests were reported like this when running the *_test binaries: ``` 4: test_acl_platform_nfs4 ok (S) ``` Let's make this more obvious: ``` 4: test_acl_platform_nfs4 skipped ``` (cherry picked from commit 7efa99bdb100cc5f32bb16324ef75920e49deaf4) --- diff --git a/test_utils/test_main.c b/test_utils/test_main.c index 128a11def..ac4d3a078 100644 --- a/test_utils/test_main.c +++ b/test_utils/test_main.c @@ -3528,7 +3528,7 @@ test_summarize(int failed, int skips_num) fflush(stdout); break; case VERBOSITY_PASSFAIL: - printf(failed ? "FAIL\n" : skips_num ? "ok (S)\n" : "ok\n"); + printf(failed ? "FAIL\n" : skips_num ? "skipped\n" : "ok\n"); break; }