summaryrefslogtreecommitdiff
path: root/tools/travis-test.sh
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2014-04-12 13:29:35 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-04-24 20:45:12 +0200
commit999753f85153ae68536aebe9f51ee3ff02b950bc (patch)
tree25bdd7ac2adb9dbce0c9e2e428c27e0d193758da /tools/travis-test.sh
parentd598cf1854d84e652ec1e35bb726b147fd6b311d (diff)
downloadpython-numpy-999753f85153ae68536aebe9f51ee3ff02b950bc.tar.gz
python-numpy-999753f85153ae68536aebe9f51ee3ff02b950bc.tar.bz2
python-numpy-999753f85153ae68536aebe9f51ee3ff02b950bc.zip
MAINT: annotate reference stealing and burrowed refs in multiarray
allows for better static analysis report with e.g. cpychecker
Diffstat (limited to 'tools/travis-test.sh')
-rwxr-xr-xtools/travis-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh
index df9dedeca..f06aea8f6 100755
--- a/tools/travis-test.sh
+++ b/tools/travis-test.sh
@@ -24,7 +24,7 @@ if [ -z "$USE_DEBUG" ]; then
else
sysflags="$($PYTHON -c "from distutils import sysconfig; print (sysconfig.get_config_var('CFLAGS'))")"
# windows compilers have this requirement
- CFLAGS="$sysflags -Werror=declaration-after-statement" $PYTHON setup.py build_ext --inplace
+ CFLAGS="$sysflags -Werror=declaration-after-statement -Werror=nonnull" $PYTHON setup.py build_ext --inplace
fi
}