Disable --enable-targets=all from NetBSD builders

This commit is contained in:
Sergio Durigan Junior 2017-09-09 20:15:32 -04:00
parent 129534c0ca
commit 5797bf47a2

View file

@ -1148,6 +1148,7 @@ class RunTestGDBNetBSD_Common (BuildAndTestGDBFactory):
self.make_command = 'gmake' self.make_command = 'gmake'
self.run_testsuite = False self.run_testsuite = False
self.system_debuginfo_location = "/usr/libdata/debug" self.system_debuginfo_location = "/usr/libdata/debug"
self.enable_targets_all = False
BuildAndTestGDBFactory.__init__ (self, **kwargs) BuildAndTestGDBFactory.__init__ (self, **kwargs)
class RunTestGDBPlainNetBSD_c64 (RunTestGDBPlain_c64t64, RunTestGDBNetBSD_Common): class RunTestGDBPlainNetBSD_c64 (RunTestGDBPlain_c64t64, RunTestGDBNetBSD_Common):