diff options
author | Paul Smith <psmith@gnu.org> | 2000-02-05 07:50:47 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-02-05 07:50:47 +0000 |
commit | 90f23f1ea6e436d681db81aa80edb7a763de2b12 (patch) | |
tree | 46bec7ceab500e7b088994e773d336d5c1f89915 /tests/scripts | |
parent | 9b0a3d91ea594ff1afe7b8ec83ff41ba828d243b (diff) | |
download | gunmake-90f23f1ea6e436d681db81aa80edb7a763de2b12.tar.gz |
* Updates for VMS, Windows, and DOS ports.
* Clean up some warnings.
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/features/vpathplus | 4 | ||||
-rw-r--r-- | tests/scripts/targets/INTERMEDIATE | 9 | ||||
-rw-r--r-- | tests/scripts/targets/SECONDARY | 8 |
3 files changed, 6 insertions, 15 deletions
diff --git a/tests/scripts/features/vpathplus b/tests/scripts/features/vpathplus index 6c9a2a0..76312b3 100644 --- a/tests/scripts/features/vpathplus +++ b/tests/scripts/features/vpathplus @@ -57,12 +57,10 @@ close(MAKEFILE); sub touchfiles { foreach (@_) { + sleep($wtime); ($f = $_) =~ s,VP/,$VP,g; &touch($f); push(@touchedfiles, $f); - # Sleep 2 seconds for DOS/Windows FAT volumes which have 2-second - # granularity of file times. - sleep(2); } } 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); diff --git a/tests/scripts/targets/SECONDARY b/tests/scripts/targets/SECONDARY index dbf052d..3ae34fd 100644 --- a/tests/scripts/targets/SECONDARY +++ b/tests/scripts/targets/SECONDARY @@ -49,9 +49,7 @@ $answer = "$make_name: `foo.d' is up to date.\n"; # TEST #3 -# 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); @@ -74,9 +72,7 @@ $answer = "$make_name: `foo.c' is up to date.\n"; # TEST #6 -# 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); |