diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2010-02-03 20:06:29 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2010-02-03 20:06:29 (GMT) |
commit | fe7c4d0c2a240ee5fcde25d595a6f3e9ae84f84d (patch) | |
tree | 0abbf3a649d3383166c04a22c71d22468e13fcff /Tests/CTestTestScheduler/sleep.c | |
parent | 6fe2376e2d907b06da55f6091c1761efe228e3d1 (diff) | |
download | CMake-fe7c4d0c2a240ee5fcde25d595a6f3e9ae84f84d.zip CMake-fe7c4d0c2a240ee5fcde25d595a6f3e9ae84f84d.tar.gz CMake-fe7c4d0c2a240ee5fcde25d595a6f3e9ae84f84d.tar.bz2 |
Add unit test to ensure that CTestCostData scheduling works correctly
Diffstat (limited to 'Tests/CTestTestScheduler/sleep.c')
-rw-r--r-- | Tests/CTestTestScheduler/sleep.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/CTestTestScheduler/sleep.c b/Tests/CTestTestScheduler/sleep.c new file mode 100644 index 0000000..b06776c --- /dev/null +++ b/Tests/CTestTestScheduler/sleep.c @@ -0,0 +1,21 @@ +#if defined(_WIN32) +# include <windows.h> +#else +# include <unistd.h> +#endif + +/* sleeps for 2n seconds, where n is the argument to the program */ +int main(int argc, char** argv) +{ + int time; + if(argc > 1) + { + time = 3 * atoi(argv[1]); + } +#if defined(_WIN32) + Sleep(time * 1000); +#else + sleep(time); +#endif + return 0; +} |