VirtualBox

source: kBuild/vendor/gnumake/3.82/tests/scripts/features/parallelism@ 2579

Last change on this file since 2579 was 2579, checked in by bird, 13 years ago

Importing make-3.82.tar.bz2 (md5sum 1a11100f3c63fcf5753818e59d63088f) with --auto-props but no keywords.

File size: 6.7 KB
Line 
1# -*-perl-*-
2
3$description = "Test parallelism (-j) option.";
4
5
6$details = "This test creates a makefile with two double-colon default
7rules. The first rule has a series of sleep and echo commands
8intended to run in series. The second and third have just an
9echo statement. When make is called in this test, it is given
10the -j option with a value of 4. This tells make that it may
11start up to four jobs simultaneously. In this case, since the
12first command is a sleep command, the output of the second
13and third commands will appear before the first if indeed
14make is running all of these commands in parallel.";
15
16if (!$parallel_jobs) {
17 return -1;
18}
19
20if ($vos) {
21 $sleep_command = "sleep -seconds";
22}
23else {
24 $sleep_command = "sleep";
25}
26
27
28run_make_test("
29all : def_1 def_2 def_3
30def_1 : ; \@echo ONE; $sleep_command 3 ; echo TWO
31def_2 : ; \@$sleep_command 2 ; echo THREE
32def_3 : ; \@$sleep_command 1 ; echo FOUR",
33 '-j4', "ONE\nFOUR\nTHREE\nTWO");
34
35# Test parallelism with included files. Here we sleep/echo while
36# building the included files, to test that they are being built in
37# parallel.
38run_make_test("
39all: 1 2; \@echo success
40-include 1.inc 2.inc
411.inc: ; \@echo ONE.inc; $sleep_command 2; echo TWO.inc; echo '1: ; \@echo ONE; $sleep_command 2; echo TWO' > \$\@
422.inc: ; \@$sleep_command 1; echo THREE.inc; echo '2: ; \@$sleep_command 1; echo THREE' > \$\@",
43 "-j4",
44 "ONE.inc\nTHREE.inc\nTWO.inc\nONE\nTHREE\nTWO\nsuccess\n");
45
46rmfiles(qw(1.inc 2.inc));
47
48
49# Test parallelism with included files--this time recurse first and make
50# sure the jobserver works.
51run_make_test("
52recurse: ; \@\$(MAKE) --no-print-directory -f #MAKEFILE# INC=yes all
53all: 1 2; \@echo success
54
55INC = no
56ifeq (\$(INC),yes)
57-include 1.inc 2.inc
58endif
59
601.inc: ; \@echo ONE.inc; $sleep_command 2; echo TWO.inc; echo '1: ; \@echo ONE; $sleep_command 2; echo TWO' > \$\@
612.inc: ; \@$sleep_command 1; echo THREE.inc; echo '2: ; \@$sleep_command 1; echo THREE' > \$\@",
62 "-j4",
63 "ONE.inc\nTHREE.inc\nTWO.inc\nONE\nTHREE\nTWO\nsuccess\n");
64
65rmfiles(qw(1.inc 2.inc));
66
67# Grant Taylor reports a problem where tokens can be lost (not written back
68# to the pipe when they should be): this happened when there is a $(shell ...)
69# function in an exported recursive variable. I added some code to check
70# for this situation and print a message if it occurred. This test used
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.
73
74run_make_test("
75export HI = \$(shell \$(\$\@.CMD))
76first.CMD = echo hi
77second.CMD = $sleep_command 4; echo hi
78
79.PHONY: all first second
80all: first second
81
82first second: ; \@echo \$\@; $sleep_command 1; echo \$\@",
83 '-j2', "first\nfirst\nsecond\nsecond", 0, 7);
84
85# Michael Matz <[email protected]> reported a bug where if make is running in
86# parallel without -k and two jobs die in a row, but not too close to each
87# other, then make will quit without waiting for the rest of the jobs to die.
88
89run_make_test("
90.PHONY: all fail.1 fail.2 fail.3 ok
91all: fail.1 ok fail.2 fail.3
92
93fail.1 fail.2 fail.3:
94 \@sleep \$(patsubst fail.%,%,\$\@)
95 \@echo Fail
96 \@exit 1
97
98ok:
99 \@sleep 4
100 \@echo Ok done",
101 '-rR -j5', 'Fail
102#MAKE#: *** [fail.1] Error 1
103#MAKE#: *** Waiting for unfinished jobs....
104Fail
105#MAKE#: *** [fail.2] Error 1
106Fail
107#MAKE#: *** [fail.3] Error 1
108Ok done',
109 512);
110
111
112# Test for Savannah bug #15641.
113#
114run_make_test('
115.PHONY: all
116all:; @:
117
118-include foo.d
119
120foo.d: comp
121 @echo building $@
122
123comp: mod_a.o mod_b.o; @:
124
125mod_a.o mod_b.o:
126 @exit 1
127', '-j2', '');
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
133utouch(-10, 'target');
134run_make_test('target: intermed ; touch $@
135
136.INTERMEDIATE: intermed
137intermed: | phony ; touch $@
138
139.PHONY: phony
140phony: ; : phony', '-rR -j', ': phony');
141rmfiles('target');
142
143# TEST #10: Don't put --jobserver-fds into a re-exec'd MAKEFLAGS.
144# We can't test this directly because there's no way a makefile can
145# show the value of MAKEFLAGS we were re-exec'd with. We can intuit it
146# by looking for "disabling jobserver mode" warnings; we should only
147# get one from the original invocation and none from the re-exec.
148# See Savannah bug #18124
149
150run_make_test(q!
151-include inc.mk
152recur:
153# @echo 'MAKEFLAGS = $(MAKEFLAGS)'
154 @rm -f inc.mk
155 @$(MAKE) -j2 -f #MAKEFILE# all
156all:
157# @echo 'MAKEFLAGS = $(MAKEFLAGS)'
158 @echo $@
159inc.mk:
160# @echo 'MAKEFLAGS = $(MAKEFLAGS)'
161 @echo 'FOO = bar' > $@
162!,
163 '--no-print-directory -j2', "#MAKE#[1]: warning: -jN forced in submake: disabling jobserver mode.\nall\n");
164
165rmfiles('inc.mk');
166
167if ($all_tests) {
168 # Implicit files aren't properly recreated during parallel builds
169 # Savannah bug #26864
170
171 # The first run works fine
172 run_make_test(q!
173%.bar: %.x foo.y ; cat $^ > $@
174%.x: ; touch $@
175foo.y: foo.y.in ; cp $< $@
176foo.y.in: ; touch $@
177!,
178 '-j2 main.bar',
179 "touch foo.y.in
180touch main.x
181cp foo.y.in foo.y
182cat main.x foo.y > main.bar
183rm main.x");
184
185 # Now we touch the .in file and make sure it still works
186 touch('foo.y.in');
187
188 run_make_test(undef, '-j2 main.bar', "cp foo.y.in foo.y
189touch main.x
190cat main.x foo.y > main.bar
191rm main.x");
192
193 # Clean up
194 rmfiles(qw(foo.y foo.y.in main.bar));
195}
196
197if ($all_tests) {
198 # Jobserver FD handling is messed up in some way.
199 # Savannah bug #28189
200 # It doesn't look like that bug anymore but this is the code it runs
201
202 run_make_test(q!
203ifdef EXTRA
204vpath %.dst /
205xxx.dst: ; true
206yyy.dst: ; true
207endif
208
209M := $(MAKE)
210xx: ; $M --no-print-directory -j2 -f $(MAKEFILE_LIST) xxx.dst yyy.dst EXTRA=1
211!,
212 '-j2',
213 '#MAKE#[1]: warning: -jN forced in submake: disabling jobserver mode.
214true
215true
216');
217}
218
219# Make sure that all jobserver FDs are closed if we need to re-exec the
220# master copy.
221#
222# First, find the "default" file descriptors we normally use
223# Then make sure they're still used.
224#
225# Right now we don't have a way to run a makefile and capture the output
226# without checking it, so we can't really write this test.
227
228# run_make_test('
229# submake: ; @$(MAKE) --no-print-directory -f #MAKEFILE# fdprint 5>output
230
231# dependfile: ; @echo FOO=bar > $@
232
233# INCL := true
234
235# FOO=foo
236# ifeq ($(INCL),true)
237# -include dependfile
238# endif
239
240# fdprint: ; @echo $(filter --jobserver%,$(MAKEFLAGS))
241
242# recurse: ; @$(MAKE) --no-print-directory -f #MAKEFILE# submake INCL=true',
243# '-j2 INCL=false fdprint',
244# 'bar');
245
246# rmfiles(qw(dependfile output));
247
248
249# # Do it again, this time where the include is done by the non-master make.
250# run_make_test(undef, '-j2 recurse INCL=false', 'bar');
251
252# rmfiles(qw(dependfile output));
253
2541;
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette