Commit Diff


commit - f2120804f42714e9493b6f8058b1d85fa5095b38
commit + c927fdffe1941bd89d2faa9aa5439dd27a7b4eed
blob - 865548d6d285635a9bd8f7e235fec7194649e17a
blob + 3285332f16238af772bb564dc58f816e6afd7374
--- lang/c/test.h
+++ lang/c/test.h
@@ -129,7 +129,7 @@ static int failed_;
 	if (i < argc || argc == 1)					\
 		RUNT(X, __VA_ARGS__);					\
 	else if (getenv("V") != NULL)		/* V = verbose */	\
-		printf("%s\tskipped\n", name);				\
+		printf("%s\t-\n", name);				\
 } while (0)
 
 #define RUNT(X, ...) do {						\
blob - 3e218cea7fc6c5d087c507b878114e11e439678b
blob + b4b617c9df20bb4bcd1f7fa245a042cfdea0afbc
--- tests/lang/c/TEST-verbose.t
+++ tests/lang/c/TEST-verbose.t
@@ -5,7 +5,7 @@ export CFLAGS=-I../../lang/c
 export V=1
 exec ./assert-c 0 \
 	"" \
-	"foo()\tOK\nbar()\tskipped\n" \
+	"foo()\tOK\nbar()\t-\n" \
 	"foo called\n" \
 	fo \
 <<-EOF