diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-14 11:29:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-14 11:29:16 (GMT) |
commit | 6d7be5f86cf9eca0ab6f4c53b834e48f81ed6291 (patch) | |
tree | b4132e02f518fb7be7a5a74beeb06e8a4cc09e5e /Makefile.pre.in | |
parent | 1b03f2ca83d6232845c2dadf47c2e15b32c1d906 (diff) | |
download | cpython-6d7be5f86cf9eca0ab6f4c53b834e48f81ed6291.zip cpython-6d7be5f86cf9eca0ab6f4c53b834e48f81ed6291.tar.gz cpython-6d7be5f86cf9eca0ab6f4c53b834e48f81ed6291.tar.bz2 |
Add make variable to allow testing of different interpreter flags in buildbot runs
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index ba66c1a..4dc0fbd 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -740,7 +740,7 @@ $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS) TESTOPTS= -l $(EXTRATESTOPTS) TESTPROG= $(srcdir)/Lib/test/regrtest.py -TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -Wd -E -bb +TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -Wd -E -bb $(TESTPYTHONOPTS) test: all platform -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) |