Changeset 1989 in kBuild for vendor/gnumake/current/tests/scripts/features/parallelism
- Timestamp:
- Oct 28, 2008 11:02:45 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/tests/scripts/features/parallelism
r501 r1989 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 <[email protected]> reported a bug where if make is running in … … 127 128 128 129 130 # TEST #9 -- Savannah bugs 3330 and 15919 131 # In earlier versions of make this will either give the wrong answer, or hang. 132 133 utouch(-10, 'target'); 134 run_make_test('target: intermed ; touch $@ 135 136 .INTERMEDIATE: intermed 137 intermed: | phony ; touch $@ 138 139 .PHONY: phony 140 phony: ; : phony', '-rR -j', ': phony'); 141 unlink('target'); 142 143 129 144 # Make sure that all jobserver FDs are closed if we need to re-exec the 130 145 # master copy.
Note:
See TracChangeset
for help on using the changeset viewer.