}
func TestGdbPythonCgo(t *testing.T) {
- if runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" {
+ if runtime.GOARCH == "mips" || runtime.GOARCH == "mipsle" || runtime.GOARCH == "mips64" {
testenv.SkipFlaky(t, 18784)
}
testGdbPython(t, true)
}
func testGdbPython(t *testing.T, cgo bool) {
- if runtime.GOARCH == "mips64" {
- testenv.SkipFlaky(t, 18173)
- }
if cgo && !build.Default.CgoEnabled {
t.Skip("skipping because cgo is not enabled")
}
if runtime.GOOS == "netbsd" {
testenv.SkipFlaky(t, 15603)
}
- if runtime.GOARCH == "mips64" {
- testenv.SkipFlaky(t, 18173)
- }
t.Parallel()
checkGdbEnvironment(t)
// TestGdbAutotmpTypes ensures that types of autotmp variables appear in .debug_info
// See bug #17830.
func TestGdbAutotmpTypes(t *testing.T) {
- if runtime.GOARCH == "mips64" {
- testenv.SkipFlaky(t, 18173)
- }
-
t.Parallel()
checkGdbEnvironment(t)
checkGdbVersion(t)