Changeset 1993 for trunk/src/kmk/tests/scripts/features
- Timestamp:
- Oct 29, 2008, 1:37:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/tests/scripts/features/parallelism
r1955 r1993 70 70 # for this situation and print a message if it occurred. This test used 71 71 # to trigger this code when I added it but no longer does after the fix. 72 # We have to increase the timeout from the default (5s) on this test. 72 73 73 74 run_make_test(" … … 80 81 81 82 first second: ; \@echo \$\@; $sleep_command 1; echo \$\@", 82 '-j2', "first\nfirst\nsecond\nsecond" );83 '-j2', "first\nfirst\nsecond\nsecond", 0, 7); 83 84 84 85 # Michael Matz <matz@suse.de> reported a bug where if make is running in … … 108 109 #MAKE#: *** [fail.1] Error 1 109 110 The failing command: 110 111 @exit 1 111 112 #MAKE#: *** Waiting for unfinished jobs.... 112 113 Fail 113 114 #MAKE#: *** [fail.2] Error 1 114 115 The failing command: 115 116 @exit 1 116 117 Fail 117 118 #MAKE#: *** [fail.3] Error 1 118 119 The failing command: 119 120 @exit 1 120 121 Ok done', 121 122 512); … … 138 139 @exit 1 139 140 ', '-j2', ''); 141 142 143 # TEST #9 -- Savannah bugs 3330 and 15919 144 # In earlier versions of make this will either give the wrong answer, or hang. 145 146 utouch(-10, 'target'); 147 run_make_test('target: intermed ; touch $@ 148 149 .INTERMEDIATE: intermed 150 intermed: | phony ; touch $@ 151 152 .PHONY: phony 153 phony: ; : phony', '-rR -j', ': phony'); 154 unlink('target'); 140 155 141 156
Note:
See TracChangeset
for help on using the changeset viewer.