mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-06 02:30:56 +00:00
12 lines
265 B
Makefile
12 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
|