mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
7d9a4df524
This change is technically backwards incompatible, but it brings native command behavior in line with subprocess behavior. --HG-- extra : rebase_source : a1cd4580ce7023f3c11eba8715133cdce116d984
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
|