Making netbsd not run testsuite
This commit is contained in:
parent
a181bda384
commit
a1b2dead62
2 changed files with 12 additions and 1 deletions
|
@ -210,7 +210,7 @@
|
||||||
"slavenames" : [ "rhel-7_1-s390x-1" ] },
|
"slavenames" : [ "rhel-7_1-s390x-1" ] },
|
||||||
|
|
||||||
{ "name" : "NetBSD-x86_64-m64",
|
{ "name" : "NetBSD-x86_64-m64",
|
||||||
"type" : "PlainBSD_c64t64",
|
"type" : "PlainNetBSD_c64",
|
||||||
"builddir" : "netbsd-x86_64",
|
"builddir" : "netbsd-x86_64",
|
||||||
"tags" : [ "netbsd", "x86_64", "m64", "TEST" ],
|
"tags" : [ "netbsd", "x86_64", "m64", "TEST" ],
|
||||||
"slavenames" : [ "gdb-amd64-netbsd7" ] },
|
"slavenames" : [ "gdb-amd64-netbsd7" ] },
|
||||||
|
|
11
master.cfg
11
master.cfg
|
@ -1143,6 +1143,17 @@ class RunTestGDBIndexBuildBSD (RunTestGDBIndexBuild, RunTestGDBBSD_Common):
|
||||||
"""Testing with the "cc-with-tweaks.sh" passing -i. FIXME: include bitness here."""
|
"""Testing with the "cc-with-tweaks.sh" passing -i. FIXME: include bitness here."""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
class RunTestGDBNetBSD_Common (BuildAndTestGDBFactory):
|
||||||
|
"""Common NetBSD test configurations"""
|
||||||
|
def __init__ (self, **kwargs):
|
||||||
|
self.make_command = 'gmake'
|
||||||
|
self.run_testsuite = False
|
||||||
|
BuildAndTestGDBFactory.__init__ (self, **kwargs)
|
||||||
|
|
||||||
|
class RunTestGDBPlainNetBSD_c64 (RunTestGDBPlain_c64t64, RunTestGDBNetBSD_Common):
|
||||||
|
"""Compiling (but not testing) for 64-bit"""
|
||||||
|
pass
|
||||||
|
|
||||||
# Classes needed for AIX systems
|
# Classes needed for AIX systems
|
||||||
|
|
||||||
class RunTestGDBAIX_Common (BuildAndTestGDBFactory):
|
class RunTestGDBAIX_Common (BuildAndTestGDBFactory):
|
||||||
|
|
Loading…
Reference in a new issue