mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a1b9cd172f
The previous behavior only adjusted sys.path during module import. This caused problems when there were delayed imports. --HG-- extra : rebase_source : ca331f6da5f4e69ae74e8e831a41b12405fdd7fc extra : amend_source : e0bd180a6fe5b5f64b2b8860f85887a9fd5b848e
13 lines
247 B
Makefile
13 lines
247 B
Makefile
#T gmake skip
|
|
|
|
# This test exists to verify that sys.path is adjusted during command
|
|
# execution and that delay importing a module will work.
|
|
|
|
CMD = %pycmd delayloadfn
|
|
PYCOMMANDPATH = $(TESTPATH) $(TESTPATH)/subdir
|
|
|
|
all:
|
|
$(CMD)
|
|
@echo TEST-PASS
|
|
|