diff options
author | mattip <matti.picus@gmail.com> | 2019-10-02 22:38:58 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-03 10:25:10 +0300 |
commit | 9fc355b545a0ed666e0b3e22cfb2cfe22b88f365 (patch) | |
tree | def9b99793c1b82fe9e4d9237bdb2b35756f1953 /tools | |
parent | c0992ed4856df9fe02c2b31744a8a7e9088aedbc (diff) | |
download | numpy-9fc355b545a0ed666e0b3e22cfb2cfe22b88f365.tar.gz |
BUILD: change to build_src --verbose-cfg, runtests.py --debug-info
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/pypy-test.sh | 2 | ||||
-rwxr-xr-x | tools/travis-test.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/pypy-test.sh b/tools/pypy-test.sh index b02d18778..f4d56ba1a 100755 --- a/tools/pypy-test.sh +++ b/tools/pypy-test.sh @@ -39,7 +39,7 @@ echo pypy3 version pypy3/bin/pypy3 -c "import sys; print(sys.version)" echo -pypy3/bin/pypy3 runtests.py --debug-configure --show-build-log -v -- -rsx \ +pypy3/bin/pypy3 runtests.py --debug-info --show-build-log -v -- -rsx \ --junitxml=junit/test-results.xml --durations 10 echo Make sure the correct openblas has been linked in diff --git a/tools/travis-test.sh b/tools/travis-test.sh index 472f5987d..6baa55817 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -52,7 +52,7 @@ setup_base() else # Python3.5-dbg on travis seems to need this export CFLAGS=$CFLAGS" -Wno-maybe-uninitialized" - $PYTHON setup.py build build_src -v build_ext --inplace 2>&1 | tee log + $PYTHON setup.py build build_src --verbose-cfg build_ext --inplace 2>&1 | tee log fi grep -v "_configtest" log \ | grep -vE "ld returned 1|no previously-included files matching|manifest_maker: standard file '-c'" \ @@ -151,7 +151,7 @@ if [ -n "$USE_WHEEL" ] && [ $# -eq 0 ]; then export F90='gfortran --coverage' export LDFLAGS='--coverage' fi - $PYTHON setup.py build build_src -v bdist_wheel + $PYTHON setup.py build build_src --verbose-cfg bdist_wheel # Make another virtualenv to install into virtualenv --python=`which $PYTHON` venv-for-wheel . venv-for-wheel/bin/activate |