summaryrefslogtreecommitdiffstats
path: root/Tests/TestDriver/test3.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestDriver/test3.cxx')
-rw-r--r--Tests/TestDriver/test3.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/TestDriver/test3.cxx b/Tests/TestDriver/test3.cxx
new file mode 100644
index 0000000..b6bcd91
--- /dev/null
+++ b/Tests/TestDriver/test3.cxx
@@ -0,0 +1,8 @@
+#include <stdio.h>
+int test3(int ac, char** av)
+{
+ printf("test3\n");
+ for(int i =0; i < ac; i++)
+ printf("arg %d is %s\n", ac, av[i]);
+ return 0;
+}