Commit 042a0517 authored by Guido van Rossum's avatar Guido van Rossum

Add $(srcdir) in front of the test program's name (else it won't work

when $(srcdir) isn't '.', i.e. when using VPATH).
parent b9d338cb
......@@ -158,7 +158,7 @@ python: Makefiles
# Test the interpreter (twice, once without .pyc files, once with)
TESTPATH= $(srcdir)/Lib:$(srcdir)/Lib/test:./Modules
TESTOPTS=
TESTPROG= Lib/test/regrtest.py
TESTPROG= $(srcdir)/Lib/test/regrtest.py
test: python
-rm -f $(srcdir)/Lib/test/*.pyc
PYTHONPATH=$(TESTPATH) ./python $(TESTPROG) $(TESTOPTS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment