diff options
author | Christian Heimes <christian@python.org> | 2022-09-11 07:51:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-11 07:51:23 (GMT) |
commit | 1fc8bd3710670982bc7ce91a34d8cd4bcdf88b9a (patch) | |
tree | 52502698fb8a5a646da105f8b8a8a09d42ee45b7 /Makefile.pre.in | |
parent | 8d75a13fdece95ddc1bba42cad3aea3ccb396e05 (diff) | |
download | cpython-1fc8bd3710670982bc7ce91a34d8cd4bcdf88b9a.zip cpython-1fc8bd3710670982bc7ce91a34d8cd4bcdf88b9a.tar.gz cpython-1fc8bd3710670982bc7ce91a34d8cd4bcdf88b9a.tar.bz2 |
gh-95853: Multiple ops and debug for wasm_build.py (#96744)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 107a707..5201abb 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1718,6 +1718,10 @@ buildbottest: all fi $(TESTRUNNER) -j 1 -u all -W --slowest --fail-env-changed --timeout=$(TESTTIMEOUT) $(TESTOPTS) +# Like testall, but run Python tests with HOSTRUNNER directly. +hostrunnertest: all + $(RUNSHARED) $(HOSTRUNNER) ./$(BUILDPYTHON) -m test -u all $(TESTOPTS) + pythoninfo: all $(RUNSHARED) $(HOSTRUNNER) ./$(BUILDPYTHON) -m test.pythoninfo |