diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index c5f802141..1c51c5196 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -197,7 +197,7 @@ set (pythonTests ) foreach (python_Test ${pythonTests}) - configure_file(${python_Test} "${python_Test}.py" COPYONLY) + configure_file(${python_Test} ${python_Test} COPYONLY) endforeach(python_Test) #SET(CMAKE_BUILD_TYPE gcov) diff --git a/test/run_all b/test/run_all index 63066a3a0..7cb610c67 100755 --- a/test/run_all +++ b/test/run_all @@ -70,7 +70,7 @@ class TestRunner(object): self._outputq = Queue() def _find_tests(self): - for test in glob.glob("*.t") + glob.glob("*.t.py"): + for test in glob.glob("*.t") if os.access(test, os.X_OK): # Executables only if self._is_parallelizable(test):