mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
155 B
Makefile
17 lines
155 B
Makefile
|
#T commandline: ['-k']
|
||
|
#T returncode: 2
|
||
|
#T grep-for: "TEST-PASS"
|
||
|
|
||
|
all:: t1
|
||
|
@echo TEST-FAIL "(t1)"
|
||
|
|
||
|
all:: t2
|
||
|
@echo TEST-PASS
|
||
|
|
||
|
t1:
|
||
|
@false
|
||
|
|
||
|
t2:
|
||
|
touch $@
|
||
|
|