aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/build_python.sh
diff options
context:
space:
mode:
authorGravatar Nathaniel Manista <nathaniel@google.com>2015-06-16 17:13:44 -0700
committerGravatar Nathaniel Manista <nathaniel@google.com>2015-06-16 17:13:44 -0700
commit94528cb58545a021df177e64a20efc91c1ac6226 (patch)
tree829aaa0a621c05656a03c5a8f662d6d485380891 /tools/run_tests/build_python.sh
parent32f020ae2a4c01eba236b3a93251ef9c18f606ec (diff)
parent9d3fbcf0ba248d981d26a6a3b9add6f85a5e2595 (diff)
Merge pull request #2081 from soltanmm/c89-oops
Make warnings errors when building Python tests.
Diffstat (limited to 'tools/run_tests/build_python.sh')
-rwxr-xr-xtools/run_tests/build_python.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/build_python.sh b/tools/run_tests/build_python.sh
index 53db6af0ea..d9b7644f44 100755
--- a/tools/run_tests/build_python.sh
+++ b/tools/run_tests/build_python.sh
@@ -38,5 +38,5 @@ rm -rf python2.7_virtual_environment
virtualenv -p /usr/bin/python2.7 python2.7_virtual_environment
source python2.7_virtual_environment/bin/activate
pip install -r src/python/requirements.txt
-CFLAGS="-I$root/include -std=c89" LDFLAGS=-L$root/libs/$CONFIG pip install src/python/src
+CFLAGS="-I$root/include -std=c89 -Werror" LDFLAGS=-L$root/libs/$CONFIG pip install src/python/src
pip install src/python/interop