From 45ab542cc3229ec79517a485a28f71ebca0563e7 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 1 Jul 2025 10:23:09 +1000 Subject: [PATCH] test: move a comment to avoid confusing clang-format Part-of: --- test/litest-runner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/litest-runner.c b/test/litest-runner.c index 08b639d0..cf6198b9 100644 --- a/test/litest-runner.c +++ b/test/litest-runner.c @@ -408,11 +408,11 @@ litest_runner_test_collect_child(struct litest_runner_test *t) case LITEST_TIMEOUT: case LITEST_SYSTEM_ERROR: break; - /* if a test execve's itself allow for the normal - * exit codes to map to the results */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wswitch" case 0: + /* if a test execve's itself allow for the normal + * exit codes to map to the results */ t->result = LITEST_PASS; break; #pragma GCC diagnostic pop