@@ -1853,21 +1853,6 @@ cleantest: all
1853
1853
test: all
1854
1854
$(TESTRUNNER) --fast-ci --timeout=$(TESTTIMEOUT) $(TESTOPTS)
1855
1855
1856
- # Run the full test suite twice - once without .pyc files, and once with.
1857
- # In the past, we've had problems where bugs in the marshalling or
1858
- # elsewhere caused bytecode read from .pyc files to behave differently
1859
- # than bytecode generated directly from a .py source file. Sometimes
1860
- # the bytecode read from a .pyc file had the bug, sometimes the directly
1861
- # generated bytecode. This is sometimes a very shy bug needing a lot of
1862
- # sample data.
1863
- .PHONY: testall
1864
- testall: all
1865
- -find $(srcdir)/Lib -name '*.py[co]' -exec rm -f {} ';' || true
1866
- $(TESTPYTHON) -E $(srcdir)/Lib/compileall.py
1867
- -find $(srcdir)/Lib -name '*.py[co]' -exec rm -f {} ';' || true
1868
- $(TESTRUNNER) --slow-ci --timeout=$(TESTTIMEOUT) $(TESTOPTS)
1869
- $(TESTRUNNER) --slow-ci --timeout=$(TESTTIMEOUT) $(TESTOPTS)
1870
-
1871
1856
# Run the test suite for both architectures in a Universal build on OSX.
1872
1857
# Must be run on an Intel box.
1873
1858
.PHONY: testuniversal
@@ -1880,16 +1865,17 @@ testuniversal: all
1880
1865
$(RUNSHARED) /usr/libexec/oah/translate \
1881
1866
./$(BUILDPYTHON) -E -m test -j 0 -u all $(TESTOPTS)
1882
1867
1883
- # Like testall, but with only one pass and without multiple processes.
1884
- # Run an optional script to include information about the build environment.
1868
+ # Like test, but using --slow-ci which enables all test resources and use
1869
+ # longer timeout. Run an optional pybuildbot.identify script to include
1870
+ # information about the build environment.
1885
1871
.PHONY: buildbottest
1886
1872
buildbottest: all
1887
1873
-@if which pybuildbot.identify >/dev/null 2>&1; then \
1888
1874
pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
1889
1875
fi
1890
1876
$(TESTRUNNER) --slow-ci --timeout=$(TESTTIMEOUT) $(TESTOPTS)
1891
1877
1892
- # Like testall , but run Python tests with HOSTRUNNER directly.
1878
+ # Like buildbottest , but run Python tests with HOSTRUNNER directly.
1893
1879
.PHONY: hostrunnertest
1894
1880
hostrunnertest: all
1895
1881
$(RUNSHARED) $(HOSTRUNNER) ./$(BUILDPYTHON) -m test --slow-ci --timeout=$(TESTTIMEOUT) $(TESTOPTS)
0 commit comments