mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3dc5df1539
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
|