summaryrefslogtreecommitdiff
path: root/Tests/CTestTestParallel/lockFile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CTestTestParallel/lockFile.cxx')
-rw-r--r--Tests/CTestTestParallel/lockFile.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/Tests/CTestTestParallel/lockFile.cxx b/Tests/CTestTestParallel/lockFile.cxx
deleted file mode 100644
index e46d0fd9ef..0000000000
--- 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");
-}