summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2016-01-04 13:41:54 +0100
committerJulian Taylor <jtaylor.debian@googlemail.com>2016-01-04 13:53:44 +0100
commit600595ff67caff21b1a062be6215164af8525a49 (patch)
tree9839432015740544a546c2c7e11bef831b176127 /tools
parente072d79f03610c33e336a9b700882d8905f9c958 (diff)
downloadpython-numpy-600595ff67caff21b1a062be6215164af8525a49.tar.gz
python-numpy-600595ff67caff21b1a062be6215164af8525a49.tar.bz2
python-numpy-600595ff67caff21b1a062be6215164af8525a49.zip
TST: make pointer-arith error fatal
matches windows compiler behavior
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis-test.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh
index 40e266b26..d105c15c7 100755
--- a/tools/travis-test.sh
+++ b/tools/travis-test.sh
@@ -25,7 +25,8 @@ if [ -n "$PYTHON_OO" ]; then
fi
# make some warnings fatal, mostly to match windows compilers
-werrors="-Werror=declaration-after-statement -Werror=vla -Werror=nonnull"
+werrors="-Werror=declaration-after-statement -Werror=vla "
+werrors+="-Werror=nonnull -Werror=pointer-arith"
setup_base()
{