diff options
Diffstat (limited to 'tests/scripts/targets/INTERMEDIATE')
-rw-r--r-- | tests/scripts/targets/INTERMEDIATE | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/scripts/targets/INTERMEDIATE b/tests/scripts/targets/INTERMEDIATE index a1df8bf..7041e83 100644 --- a/tests/scripts/targets/INTERMEDIATE +++ b/tests/scripts/targets/INTERMEDIATE @@ -35,6 +35,7 @@ close(MAKEFILE); &touch('foo.f'); &touch('bar.f'); +sleep($wtime); &run_make_with_options($makefile,'foo.d',&get_logfile); $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n"; @@ -48,9 +49,7 @@ $answer = "$make_name: `foo.d' is up to date.\n"; # TEST #2 -# Sleep 2 seconds for DOS/Windows FAT volumes which have 2-second -# granularity of file times. -sleep(2); +sleep($wtime); &touch('foo.f'); &run_make_with_options($makefile,'foo.d',&get_logfile); @@ -71,9 +70,7 @@ $answer = "$make_name: `foo.c' is up to date.\n"; # TEST #5 -# Sleep 2 seconds for DOS/Windows FAT volumes which have 2-second -# granularity of file times. -sleep(2); +sleep($wtime); &touch('foo.f'); &run_make_with_options($makefile,'foo.c',&get_logfile); |