build/pymake/tests/serial-doublecolon-execution.mk

branch
TOR_BUG_9701
changeset 3
141e0f1194b1
equal deleted inserted replaced
-1:000000000000 0:8928b0220be6
1 #T commandline: ['-j3']
2
3 # Commands of double-colon rules are always executed in order.
4
5 all: dc
6 cat status
7 test "$$(cat status)" = "all1:all2:"
8 @echo TEST-PASS
9
10 dc:: slowt
11 printf "all1:" >> status
12
13 dc::
14 sleep 0.2
15 printf "all2:" >> status
16
17 slowt:
18 sleep 1

mercurial