aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/failing test/5 tap tests/tester.c
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/failing test/5 tap tests/tester.c')
-rw-r--r--meson/test cases/failing test/5 tap tests/tester.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/meson/test cases/failing test/5 tap tests/tester.c b/meson/test cases/failing test/5 tap tests/tester.c
new file mode 100644
index 000000000..ac582e7c0
--- /dev/null
+++ b/meson/test cases/failing test/5 tap tests/tester.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+
+int main(int argc, char **argv) {
+ if (argc != 2) {
+ fprintf(stderr, "Incorrect number of arguments, got %i\n", argc);
+ return 1;
+ }
+ puts(argv[1]);
+ return 0;
+}