diff options
author | Paul Smith <psmith@gnu.org> | 2011-12-10 17:13:14 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2011-12-10 17:13:14 +0000 |
commit | 3057357c0a5c2507eef2b61eef9ebfb569b30230 (patch) | |
tree | e01da0961d6b21748700c13247c70e0dee33b487 /tests/scripts/targets/SECONDARY | |
parent | cb0bedc3d07c5561a89c14ea5cc81c08215855ee (diff) | |
download | gunmake-3057357c0a5c2507eef2b61eef9ebfb569b30230.tar.gz |
Add prerequisites to ensure ordering of results.
Diffstat (limited to 'tests/scripts/targets/SECONDARY')
-rw-r--r-- | tests/scripts/targets/SECONDARY | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/scripts/targets/SECONDARY b/tests/scripts/targets/SECONDARY index c954ee9..26515d8 100644 --- a/tests/scripts/targets/SECONDARY +++ b/tests/scripts/targets/SECONDARY @@ -129,10 +129,11 @@ touch(qw(1.a 2.a)); run_make_test(' %.c : %.b ; cp $< $@ %.b : %.a ; cp $< $@ -all : 1.c 2.c', '-rR -j', +all : 1.c 2.c +2.a: 1.c', '-rR -j', 'cp 1.a 1.b -cp 2.a 2.b cp 1.b 1.c +cp 2.a 2.b cp 2.b 2.c rm 1.b 2.b'); |