diff options
author | Paul Smith <psmith@gnu.org> | 2002-09-04 07:26:19 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-09-04 07:26:19 +0000 |
commit | 988deb489b89889b97f82e3095d267d09ff7e7ab (patch) | |
tree | 8127d7aa6cfedde3f284f5c6ae77e4f2eefee59e /tests/scripts/options/dash-n | |
parent | d2429d7508169501d2dfeefca5608005142fe236 (diff) | |
download | gunmake-988deb489b89889b97f82e3095d267d09ff7e7ab.tar.gz |
Fix for complex situations where directories are declared as prerequisites.
Info on this fix from barkalow@reputation.com: thanks!
Some updates/cleanups of some of the tests; added a forgotten -t test, etc.
Diffstat (limited to 'tests/scripts/options/dash-n')
-rw-r--r-- | tests/scripts/options/dash-n | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/scripts/options/dash-n b/tests/scripts/options/dash-n index 35f317d..de19f42 100644 --- a/tests/scripts/options/dash-n +++ b/tests/scripts/options/dash-n @@ -49,14 +49,8 @@ EOF close(MAKEFILE); -&touch('b'); -# Sometimes, on my Solaris 2.5.1 box with a NetApp filesystem NFS-mounted, -# just touching b first then a isn't good enough: the nsec field in the -# stat result shows b is _newer_ than a once every 5 or 6 tries!!! I've -# no idea what this is about, but that's why there's a sleep(1) here... -sleep(1); -&touch('a'); -sleep(1); +&utouch(-20, 'b'); +&utouch(-10, 'a'); &touch('c'); # TEST 2 |