summaryrefslogtreecommitdiff
path: root/Tests/SubDir
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-28 10:05:37 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-28 10:05:37 -0400
commit996ac24181b8de07dce0eb5c1e200ffed9a44862 (patch)
tree8845fdb8eba0a2043e7bf6ba68f31d884ab39a16 /Tests/SubDir
parentf248295d5d8b3cc5d21150807885b0fc332c5d56 (diff)
downloadcmake-996ac24181b8de07dce0eb5c1e200ffed9a44862.tar.gz
ENH: More special cases
Diffstat (limited to 'Tests/SubDir')
-rw-r--r--Tests/SubDir/ThirdSubDir/pair_p_int.int1.c6
-rw-r--r--Tests/SubDir/ThirdSubDir/testfromauxsubdir.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c b/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c
new file mode 100644
index 0000000000..95a66eee69
--- /dev/null
+++ b/Tests/SubDir/ThirdSubDir/pair_p_int.int1.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+void pair_p_stuff()
+{
+ printf("Placeholder for another strange file in subdirectory\n");
+}
diff --git a/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c b/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c
index 34b6e7a88d..3f6a20634e 100644
--- a/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c
+++ b/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c
@@ -9,6 +9,7 @@ int main()
printf("Hello from subdirectory\n");
secondone();
pair_stuff();
+ pair_p_stuff();
vcl_stuff();
return 0;
}