summaryrefslogtreecommitdiffstats
path: root/Tests/Testing
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-02-25 20:22:39 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-02-25 20:22:39 (GMT)
commitb7177cec307cc156953ed0c00ed8fd19de126603 (patch)
treea44404076728c73fef34d8f682c3a4c9808bffb1 /Tests/Testing
parent2649962d65a73307541b48e3da258ed96aa2bcb9 (diff)
downloadCMake-b7177cec307cc156953ed0c00ed8fd19de126603.zip
CMake-b7177cec307cc156953ed0c00ed8fd19de126603.tar.gz
CMake-b7177cec307cc156953ed0c00ed8fd19de126603.tar.bz2
ENH: provide a test for today's ReadListFile() bug fix
Diffstat (limited to 'Tests/Testing')
-rw-r--r--Tests/Testing/CMakeLists.txt2
-rw-r--r--Tests/Testing/Sub/CMakeLists.txt0
-rw-r--r--Tests/Testing/Sub/Sub2/CMakeLists.txt5
-rw-r--r--Tests/Testing/Sub/Sub2/testing2.cxx4
4 files changed, 10 insertions, 1 deletions
diff --git a/Tests/Testing/CMakeLists.txt b/Tests/Testing/CMakeLists.txt
index ece06d6..f6fd4df 100644
--- a/Tests/Testing/CMakeLists.txt
+++ b/Tests/Testing/CMakeLists.txt
@@ -67,4 +67,4 @@ ADD_TEST(testing ${Testing_BINARY_DIR}/bin/testing)
# Force subdirs
# (coverage)
#
-SUBDIRS(Sub)
+SUBDIRS(Sub/Sub2)
diff --git a/Tests/Testing/Sub/CMakeLists.txt b/Tests/Testing/Sub/CMakeLists.txt
deleted file mode 100644
index e69de29..0000000
--- a/Tests/Testing/Sub/CMakeLists.txt
+++ /dev/null
diff --git a/Tests/Testing/Sub/Sub2/CMakeLists.txt b/Tests/Testing/Sub/Sub2/CMakeLists.txt
new file mode 100644
index 0000000..864c1b7
--- /dev/null
+++ b/Tests/Testing/Sub/Sub2/CMakeLists.txt
@@ -0,0 +1,5 @@
+#
+# Add test
+#
+ADD_EXECUTABLE(testing2 testing2.cxx)
+ADD_TEST(testing2 ${Testing_BINARY_DIR}/bin/testing2)
diff --git a/Tests/Testing/Sub/Sub2/testing2.cxx b/Tests/Testing/Sub/Sub2/testing2.cxx
new file mode 100644
index 0000000..1482f27
--- /dev/null
+++ b/Tests/Testing/Sub/Sub2/testing2.cxx
@@ -0,0 +1,4 @@
+int main ()
+{
+ return 0;
+}