From 64754f3a2a370591ebf12b609afc4872509a5ed7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 8 Jan 2024 17:20:27 +0000 Subject: [PATCH] test: When listing test-cases, say which ones are disabled When a test has been disabled because it's known not to work reliably or it's a test for unimplemented functionality, we probably don't want to encourage developers and testers to run it and report its failures as a bug. Helps: #8798, #8800 Signed-off-by: Simon McVittie --- src/test/SDL_test_harness.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/SDL_test_harness.c b/src/test/SDL_test_harness.c index db3d2a256..460e694f8 100644 --- a/src/test/SDL_test_harness.c +++ b/src/test/SDL_test_harness.c @@ -494,7 +494,7 @@ int SDLTest_RunSuites(SDLTest_TestSuiteReference *testSuites[], const char *user /* Within each suite, loop over all test cases to check if we have a filter match */ for (testCounter = 0; testSuite->testCases[testCounter]; ++testCounter) { testCase = testSuite->testCases[testCounter]; - SDLTest_Log(" test: %s", testCase->name); + SDLTest_Log(" test: %s%s", testCase->name, testCase->enabled ? "" : " (disabled)"); } } SDLTest_Log("Exit code: 2");