diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-23 15:38:37 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-23 15:38:37 (GMT) |
commit | f3dce87e6d508e7552bd378f98d22f82c2011516 (patch) | |
tree | 788e1550eef8d9c1f79a8164bf225047966201f2 /Tests/CTestTestParallel | |
parent | 4e121af95eebcff0e203ce19994c0f20f02688c6 (diff) | |
download | CMake-f3dce87e6d508e7552bd378f98d22f82c2011516.zip CMake-f3dce87e6d508e7552bd378f98d22f82c2011516.tar.gz CMake-f3dce87e6d508e7552bd378f98d22f82c2011516.tar.bz2 |
Set new ctest tests to always run, whether CTEST_TEST_CTEST is enabled or not. Changed parallel test to be portable.
Diffstat (limited to 'Tests/CTestTestParallel')
-rw-r--r-- | Tests/CTestTestParallel/CMakeLists.txt | 3 | ||||
-rw-r--r-- | Tests/CTestTestParallel/lockFile.c | 20 | ||||
-rw-r--r-- | Tests/CTestTestParallel/lockFile.cxx | 20 |
3 files changed, 21 insertions, 22 deletions
diff --git a/Tests/CTestTestParallel/CMakeLists.txt b/Tests/CTestTestParallel/CMakeLists.txt index b6d31b3..1e57074 100644 --- a/Tests/CTestTestParallel/CMakeLists.txt +++ b/Tests/CTestTestParallel/CMakeLists.txt @@ -8,8 +8,7 @@ INCLUDE (${CMAKE_ROOT}/Modules/Dart.cmake) GET_FILENAME_COMPONENT(CTEST_COMMAND "${CMAKE_COMMAND}" PATH) SET(CTEST_COMMAND "${CTEST_COMMAND}/ctest") -ADD_EXECUTABLE (LockFile lockFile.cxx) -TARGET_LINK_LIBRARIES (NoBuild ${EXTRA_LIBS}) +ADD_EXECUTABLE (LockFile lockFile.c) ENABLE_TESTING () diff --git a/Tests/CTestTestParallel/lockFile.c b/Tests/CTestTestParallel/lockFile.c new file mode 100644 index 0000000..7942b72 --- /dev/null +++ b/Tests/CTestTestParallel/lockFile.c @@ -0,0 +1,20 @@ +#include <stdio.h> + +//if run serially, works fine +//if run in parallel, someone will attempt to delete +//a locked file, which will fail +int main() +{ + FILE* file; + int i; + const char* fname = "lockedFile.txt"; + file = fopen(fname, "w"); + + for(i = 0; i < 10000; i++) + { + fprintf(file, "%s", "x"); + fflush(file); + } + fclose(file); + return remove(fname); +} diff --git a/Tests/CTestTestParallel/lockFile.cxx b/Tests/CTestTestParallel/lockFile.cxx deleted file mode 100644 index e46d0fd..0000000 --- a/Tests/CTestTestParallel/lockFile.cxx +++ /dev/null @@ -1,20 +0,0 @@ -#include <iostream> -#include <fstream> - -//if run serially, works fine -//if run in parallel, someone will attempt to delete -//a locked file, which will fail -int main() -{ - std::string fname = "lockedFile.txt"; - std::fstream fout; - fout.open(fname.c_str(), std::ios::out); - - for(int i = 0; i < 10000; i++) - { - fout << "x"; - fout.flush(); - } - fout.close(); - return std::remove("lockedFile.txt"); -} |