diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-23 18:07:57 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-23 18:07:57 (GMT) |
commit | 8ffc8147e07b67e484b235760ea5c6f0b8b21756 (patch) | |
tree | 5f32cdf0f0060dde29755eb3f1fbdaea4c9ff3aa /Tests/CTestTestParallel | |
parent | 39383ef8cb691656012275721064baef1e4f7511 (diff) | |
download | CMake-8ffc8147e07b67e484b235760ea5c6f0b8b21756.zip CMake-8ffc8147e07b67e484b235760ea5c6f0b8b21756.tar.gz CMake-8ffc8147e07b67e484b235760ea5c6f0b8b21756.tar.bz2 |
Make portable c for Parallel test
Diffstat (limited to 'Tests/CTestTestParallel')
-rw-r--r-- | Tests/CTestTestParallel/lockFile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/CTestTestParallel/lockFile.c b/Tests/CTestTestParallel/lockFile.c index 7942b72..6a6a889 100644 --- a/Tests/CTestTestParallel/lockFile.c +++ b/Tests/CTestTestParallel/lockFile.c @@ -1,9 +1,9 @@ #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() +/*if run serially, works fine. + If run in parallel, someone will attempt to delete + a locked file, which will fail */ +int main(void) { FILE* file; int i; |