comparison: build/pymake/tests/keep-going-doublecolon.mk
build/pymake/tests/keep-going-doublecolon.mk
- branch
- TOR_BUG_9701
- changeset 3
- 141e0f1194b1
equal
deleted
inserted
replaced
|
1 #T commandline: ['-k'] |
|
2 #T returncode: 2 |
|
3 #T grep-for: "TEST-PASS" |
|
4 |
|
5 all:: t1 |
|
6 @echo TEST-FAIL "(t1)" |
|
7 |
|
8 all:: t2 |
|
9 @echo TEST-PASS |
|
10 |
|
11 t1: |
|
12 @false |
|
13 |
|
14 t2: |
|
15 touch $@ |
|
16 |