summaryrefslogtreecommitdiffstats
path: root/test cases/failing test/5 tap tests/tester_with_status.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/failing test/5 tap tests/tester_with_status.c')
-rw-r--r--test cases/failing test/5 tap tests/tester_with_status.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/failing test/5 tap tests/tester_with_status.c b/test cases/failing test/5 tap tests/tester_with_status.c
new file mode 100644
index 0000000..7613afe
--- /dev/null
+++ b/test cases/failing test/5 tap tests/tester_with_status.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char **argv) {
+ puts("1..1");
+ puts("not ok 1 - some test");
+ return 2;
+}