build/pymake/tests/parallel-waiting.mk

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 #T commandline: ['-j2']
     3 EXPECTED = target1:before:target2:1:target2:2:target2:3:target1:after
     5 all:: target1 target2
     6 	cat results
     7 	test "$$(cat results)" = "$(EXPECTED)"
     8 	@echo TEST-PASS
    10 target1:
    11 	printf "$@:before:" >>results
    12 	sleep 4
    13 	printf "$@:after" >>results
    15 target2:
    16 	sleep 0.2
    17 	printf "$@:1:" >>results
    18 	sleep 0.1
    19 	printf "$@:2:" >>results
    20 	sleep 0.1
    21 	printf "$@:3:" >>results

mercurial