summaryrefslogtreecommitdiffstats
path: root/Tests/Testing
diff options
context:
space:
mode:
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;
+}