finish the change of adding .sh extensions to scripts

This commit is contained in:
Benoit Jacob 2010-05-30 15:58:11 -04:00
parent 641d968a9a
commit 42f1b7d470
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
get_property(EIGEN_TESTS_LIST GLOBAL PROPERTY EIGEN_TESTS_LIST)
configure_file(buildtests.in ${CMAKE_BINARY_DIR}/buildtests @ONLY)
configure_file(buildtests.in ${CMAKE_BINARY_DIR}/buildtests.sh @ONLY)
configure_file(check.in ${CMAKE_BINARY_DIR}/check.sh COPYONLY)
configure_file(debug.in ${CMAKE_BINARY_DIR}/debug.sh COPYONLY)

View File

@ -14,8 +14,8 @@ fi
if [ -n "${EIGEN_CTEST_ARGS:+x}" ]
then
./buildtests "$1" && ctest -R "$1" ${EIGEN_CTEST_ARGS}
./buildtests.sh "$1" && ctest -R "$1" ${EIGEN_CTEST_ARGS}
else
./buildtests "$1" && ctest -R "$1"
./buildtests.sh "$1" && ctest -R "$1"
fi
exit $?