mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 04:43:07 +09:00
11 lines
265 B
Makefile
11 lines
265 B
Makefile
#T gmake skip
|
|
export EXPECTED := some data
|
|
|
|
PYCOMMANDPATH = $(TESTPATH)
|
|
|
|
all:
|
|
%pycmd writeenvtofile results EXPECTED
|
|
test "$$(cat results)" = "$(EXPECTED)"
|
|
%pycmd writesubprocessenvtofile results EXPECTED
|
|
test "$$(cat results)" = "$(EXPECTED)"
|
|
@echo TEST-PASS
|