From 7efa99bdb100cc5f32bb16324ef75920e49deaf4 Mon Sep 17 00:00:00 2001 From: Mostyn Bramley-Moore Date: Mon, 9 Dec 2024 03:08:34 +0100 Subject: [PATCH] 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 ``` --- test_utils/test_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2