commit 0f3b75642b06aadaae537f2f64929fdd9f77fae6 from: Sven M. Hallberg date: Mon May 26 10:40:16 2025 UTC put a TAB into "test() skipped" to fit regular output This version matches project sc2 (git): commit fb675b5f860edf6266885e42d9c09c2802cf9416 from: Sven M. Hallberg date: Sat Dec 28 23:46:43 2024 UTC commit - b638044ea2cf31ebaa7acb1353cd1e569306ec6f commit + 0f3b75642b06aadaae537f2f64929fdd9f77fae6 blob - 496d1d22a850d0a069918cd8be2b1b718a34753b blob + c816179663cfe2982283f6255ef8cdec5a87c160 --- lang/c/test.h +++ lang/c/test.h @@ -90,9 +90,9 @@ * mode with an impossible selection: * * $ V=1 ./test - - * foo() skipped - * bar(0xff) skipped - * bar(0x0f) skipped + * foo() skipped + * bar(0xff) skipped + * bar(0x0f) skipped * * $ V=1 ./test - | wc -l * 3 @@ -120,7 +120,7 @@ static int failed_; if (i < argc || argc == 1) \ RUNT(X, __VA_ARGS__); \ else if (getenv("V") != NULL) /* V = verbose */ \ - printf("%s skipped\n", name); \ + printf("%s\tskipped\n", name); \ } while (0) #define RUNT(X, ...) do { \