diff options
author | seberg <sebastian@sipsolutions.net> | 2016-01-04 14:30:40 +0100 |
---|---|---|
committer | seberg <sebastian@sipsolutions.net> | 2016-01-04 14:30:40 +0100 |
commit | b8fef84a5b505cec9312d606c6639e35269d50f3 (patch) | |
tree | 9839432015740544a546c2c7e11bef831b176127 | |
parent | e072d79f03610c33e336a9b700882d8905f9c958 (diff) | |
parent | 600595ff67caff21b1a062be6215164af8525a49 (diff) | |
download | numpy-b8fef84a5b505cec9312d606c6639e35269d50f3.tar.gz |
Merge pull request #6934 from juliantaylor/werr-pointer
TST: make pointer-arith error fatal
-rwxr-xr-x | tools/travis-test.sh | 3 |
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() { |