mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
475 B
Makefile
22 lines
475 B
Makefile
#T gmake skip
|
|
EXPECTED := some data
|
|
|
|
# verify that we can load native command modules from
|
|
# multiple directories in PYCOMMANDPATH separated by the native
|
|
# path separator
|
|
ifdef __WIN32__
|
|
PS:=;
|
|
else
|
|
PS:=:
|
|
endif
|
|
CMD = %pycmd writetofile
|
|
CMD2 = %pymod writetofile
|
|
PYCOMMANDPATH = $(TESTPATH)$(PS)$(TESTPATH)/subdir
|
|
|
|
all:
|
|
$(CMD) results $(EXPECTED)
|
|
test "$$(cat results)" = "$(EXPECTED)"
|
|
$(CMD2) results2 $(EXPECTED)
|
|
test "$$(cat results2)" = "$(EXPECTED)"
|
|
@echo TEST-PASS
|