summaryrefslogtreecommitdiffstats
path: root/Tests/TestDriver/subdir
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-03-27 18:47:05 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-03-27 18:47:05 (GMT)
commit1623dc2183996810c00417e9bc532ce38f7c893e (patch)
tree8cb56f1a03cc14acdadfac4cb60c1f22cc36247f /Tests/TestDriver/subdir
parent6d5bef7dafc392fe5a7dba6a9ebe29f7b7383951 (diff)
downloadCMake-1623dc2183996810c00417e9bc532ce38f7c893e.zip
CMake-1623dc2183996810c00417e9bc532ce38f7c893e.tar.gz
CMake-1623dc2183996810c00417e9bc532ce38f7c893e.tar.bz2
ENH: add testdriver test with source file in subdir
Diffstat (limited to 'Tests/TestDriver/subdir')
-rw-r--r--Tests/TestDriver/subdir/test3.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/TestDriver/subdir/test3.cxx b/Tests/TestDriver/subdir/test3.cxx
new file mode 100644
index 0000000..13cfb5e
--- /dev/null
+++ b/Tests/TestDriver/subdir/test3.cxx
@@ -0,0 +1,8 @@
+#include <stdio.h>
+int subdir_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;
+}