mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 03:08:38 +09:00
16 lines
155 B
Makefile
16 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 $@
|
|
|