summaryrefslogtreecommitdiffstats
path: root/Tests/CTestTestScheduler/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CTestTestScheduler/sleep.c')
-rw-r--r--Tests/CTestTestScheduler/sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/CTestTestScheduler/sleep.c b/Tests/CTestTestScheduler/sleep.c
index b06776c..9631a68 100644
--- a/Tests/CTestTestScheduler/sleep.c
+++ b/Tests/CTestTestScheduler/sleep.c
@@ -4,13 +4,13 @@
# include <unistd.h>
#endif
-/* sleeps for 2n seconds, where n is the argument to the program */
+/* sleeps for 4n 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]);
+ time = 4 * atoi(argv[1]);
}
#if defined(_WIN32)
Sleep(time * 1000);