diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-02-19 17:23:37 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-02-19 17:23:37 (GMT) |
commit | 83b5890a2f05c68eec6bb74f13244172a9358ce6 (patch) | |
tree | c14a5aa1b498cd3e21ce7761e07ca3c5f113084a /Tests/SubDirSpaces/Another Subdir | |
parent | 74968ce1c7822608de25d90e4e5f16285bc0db8a (diff) | |
download | CMake-83b5890a2f05c68eec6bb74f13244172a9358ce6.zip CMake-83b5890a2f05c68eec6bb74f13244172a9358ce6.tar.gz CMake-83b5890a2f05c68eec6bb74f13244172a9358ce6.tar.bz2 |
ENH: new test for spaces in the tree structure
Diffstat (limited to 'Tests/SubDirSpaces/Another Subdir')
-rw-r--r-- | Tests/SubDirSpaces/Another Subdir/pair+int.int.c | 6 | ||||
-rw-r--r-- | Tests/SubDirSpaces/Another Subdir/pair_int.int.c | 6 | ||||
-rw-r--r-- | Tests/SubDirSpaces/Another Subdir/secondone.c | 6 | ||||
-rw-r--r-- | Tests/SubDirSpaces/Another Subdir/testfromsubdir.c | 14 |
4 files changed, 32 insertions, 0 deletions
diff --git a/Tests/SubDirSpaces/Another Subdir/pair+int.int.c b/Tests/SubDirSpaces/Another Subdir/pair+int.int.c new file mode 100644 index 0000000..b7a6237 --- /dev/null +++ b/Tests/SubDirSpaces/Another Subdir/pair+int.int.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void pair_stuff() +{ + printf("Placeholder for a strange file in subdirectory\n"); +} diff --git a/Tests/SubDirSpaces/Another Subdir/pair_int.int.c b/Tests/SubDirSpaces/Another Subdir/pair_int.int.c new file mode 100644 index 0000000..b7a6237 --- /dev/null +++ b/Tests/SubDirSpaces/Another Subdir/pair_int.int.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void pair_stuff() +{ + printf("Placeholder for a strange file in subdirectory\n"); +} diff --git a/Tests/SubDirSpaces/Another Subdir/secondone.c b/Tests/SubDirSpaces/Another Subdir/secondone.c new file mode 100644 index 0000000..3e9e5af --- /dev/null +++ b/Tests/SubDirSpaces/Another Subdir/secondone.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +void secondone() +{ + printf("Hello again\n"); +} diff --git a/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c b/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c new file mode 100644 index 0000000..34b6e7a --- /dev/null +++ b/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c @@ -0,0 +1,14 @@ +#include <stdio.h> + +void secondone(); +void pair_stuff(); +void vcl_stuff(); + +int main() +{ + printf("Hello from subdirectory\n"); + secondone(); + pair_stuff(); + vcl_stuff(); + return 0; +} |