diff options
author | Matthias Klose <doko@ubuntu.com> | 2007-09-04 18:17:36 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2007-09-04 18:17:36 (GMT) |
commit | 642ac8530ac9ec26ab81dc7e9d747d27d7a1f160 (patch) | |
tree | 8363c0b420d1930a37a1260326db06e84ec0c8ba /Makefile.pre.in | |
parent | a5136196bce72c51c79a5f961223b4645c90255c (diff) | |
download | cpython-642ac8530ac9ec26ab81dc7e9d747d27d7a1f160.zip cpython-642ac8530ac9ec26ab81dc7e9d747d27d7a1f160.tar.gz cpython-642ac8530ac9ec26ab81dc7e9d747d27d7a1f160.tar.bz2 |
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
to include some information about the build environment.
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 e2082d9..4e5644d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -601,7 +601,11 @@ testuniversal: all platform # Like testall, but with a single pass only +# run an optional script to include some information about the build environment buildbottest: all platform + -@if which pybuildbot.identify >/dev/null 2>&1; then \ + pybuildbot.identify "CC=$(CC)" "CXX=$(CXX)"; \ + fi $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \ |