summaryrefslogtreecommitdiff
path: root/Tests/CTestTestScheduler/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CTestTestScheduler/sleep.c')
-rw-r--r--Tests/CTestTestScheduler/sleep.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/CTestTestScheduler/sleep.c b/Tests/CTestTestScheduler/sleep.c
new file mode 100644
index 000000000..9631a68dc
--- /dev/null
+++ b/Tests/CTestTestScheduler/sleep.c
@@ -0,0 +1,21 @@
+#if defined(_WIN32)
+# include <windows.h>
+#else
+# include <unistd.h>
+#endif
+
+/* sleeps for 4n seconds, where n is the argument to the program */
+int main(int argc, char** argv)
+{
+ int time;
+ if(argc > 1)
+ {
+ time = 4 * atoi(argv[1]);
+ }
+#if defined(_WIN32)
+ Sleep(time * 1000);
+#else
+ sleep(time);
+#endif
+ return 0;
+}