Add NetBSD buildslave and builder; comment out unnecessary extra_conf_flags on BSD

This commit is contained in:
Sergio Durigan Junior 2016-01-04 14:54:36 -05:00
parent b93041d7e2
commit 87af29fa81
2 changed files with 10 additions and 2 deletions

View file

@ -253,6 +253,12 @@
"builddir" : "rhel-s390x", "builddir" : "rhel-s390x",
"tags" : [ "rhel", "s390x", "m64", "MAIL" ], "tags" : [ "rhel", "s390x", "m64", "MAIL" ],
"slavenames" : [ "rhel-7.1-s390x-1" ] }, "slavenames" : [ "rhel-7.1-s390x-1" ] },
{ "name" : "NetBSD-x86_64-m64",
"type" : "PlainBSD_c64t64",
"builddir" : "netbsd-x86_64",
"tags" : [ "netbsd", "x86_64", "m64", "TEST" ],
"slavenames" : [ "gdb-amd64-netbsd7" ] }
], ],
"schedulers" : [ { "type" : "AnyBranchScheduler", "name" : "master", "schedulers" : [ { "type" : "AnyBranchScheduler", "name" : "master",
@ -291,7 +297,9 @@
"AIX-POWER7-plain", "AIX-POWER7-plain",
"RHEL-s390x-m64" ] "RHEL-s390x-m64",
"NetBSD-x86_64-m64" ]
} }
] ]

View file

@ -792,7 +792,7 @@ anything for now."""
class RunTestGDBBSD_Common (BuildAndTestGDBFactory): class RunTestGDBBSD_Common (BuildAndTestGDBFactory):
"""Common BSD test configurations""" """Common BSD test configurations"""
def __init__ (self, **kwargs): def __init__ (self, **kwargs):
self.extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ] # self.extra_conf_flags = [ 'CFLAGS=-I/usr/local/include', '--disable-werror' ]
self.make_command = 'gmake' self.make_command = 'gmake'
BuildAndTestGDBFactory.__init__ (self, **kwargs) BuildAndTestGDBFactory.__init__ (self, **kwargs)