aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/failing test/5 tap tests/tester_with_status.c
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/failing test/5 tap tests/tester_with_status.c')
-rw-r--r--meson/test cases/failing test/5 tap tests/tester_with_status.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/meson/test cases/failing test/5 tap tests/tester_with_status.c b/meson/test cases/failing test/5 tap tests/tester_with_status.c
new file mode 100644
index 000000000..7613afefc
--- /dev/null
+++ b/meson/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;
+}