summaryrefslogtreecommitdiffstats
path: root/test cases/common/206 tap tests/tester.c
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/206 tap tests/tester.c')
-rw-r--r--test cases/common/206 tap tests/tester.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/common/206 tap tests/tester.c b/test cases/common/206 tap tests/tester.c
new file mode 100644
index 0000000..ac582e7
--- /dev/null
+++ b/test cases/common/206 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;
+}