Przeglądaj źródła

ENH: provide a test for today's ReadListFile() bug fix

Sebastien Barre 24 lat temu
rodzic
commit
b7177cec30

+ 1 - 1
Tests/Testing/CMakeLists.txt

@@ -67,4 +67,4 @@ ADD_TEST(testing ${Testing_BINARY_DIR}/bin/testing)
 # Force subdirs
 # (coverage)
 #
-SUBDIRS(Sub)
+SUBDIRS(Sub/Sub2)

+ 0 - 0
Tests/Testing/Sub/CMakeLists.txt


+ 5 - 0
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)

+ 4 - 0
Tests/Testing/Sub/Sub2/testing2.cxx

@@ -0,0 +1,4 @@
+int main ()
+{
+  return 0;
+}