Adding --disable-werror on BSD builds.... Sigh

This commit is contained in:
Sergio Durigan Junior 2015-01-22 23:41:16 -05:00
parent 5b36080933
commit 12e4354412

View file

@ -565,22 +565,22 @@ class RunTestGDBIndexBuild (BuildAndTestGDBFactory):
class RunTestGDBPlainBSD_c64t64 (RunTestGDBPlain_c64t64):
"""Compiling for 64-bit, testing on 64-bit."""
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ]
make_command = 'gmake'
class RunTestGDBNativeGDBServerBSD_c64t64 (RunTestGDBNativeGDBServer_c64t64):
"""Compiling on 64-bit, testing native-gdbserver on 64-bit."""
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ]
make_command = 'gmake'
class RunTestGDBNativeExtendedGDBServerBSD_c64t64 (RunTestGDBNativeExtendedGDBServer_c64t64):
"""Compiling on 64-bit, testing native-extended-gdbserver on 64-bit."""
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ]
make_command = 'gmake'
class RunTestGDBIndexBuildBSD (RunTestGDBIndexBuild):
"""Testing with the "cc-with-tweaks.sh" passing -i. FIXME: include bitness here."""
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include' ]
extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ]
make_command = 'gmake'
# For now, we only support testing the "master" branch.