aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2021-04-02 10:44:08 +0200
committerEric Botcazou <ebotcazou@adacore.com>2021-04-02 10:47:07 +0200
commitf1f7e54fb30295966da20d7e63ca25e42d2790b8 (patch)
treed8f083de9a531ef6b68ae732ce9bf0037669f3fb /gcc
parente53c0696113cced90561e79ade27445f6c0926d0 (diff)
downloadgcc-f1f7e54fb30295966da20d7e63ca25e42d2790b8.zip
gcc-f1f7e54fb30295966da20d7e63ca25e42d2790b8.tar.gz
gcc-f1f7e54fb30295966da20d7e63ca25e42d2790b8.tar.bz2
Skip couple of Go tests on 32-bit SPARC
Since they are already skipped on other 32-bit architectures. gcc/testsuite/ * go.test/test/fixedbugs/issue6036.go: Skip on sparc. * go.test/test/fixedbugs/issue22200b.go: Likewise.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/go.test/test/fixedbugs/issue22200b.go2
-rw-r--r--gcc/testsuite/go.test/test/fixedbugs/issue6036.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/go.test/test/fixedbugs/issue22200b.go b/gcc/testsuite/go.test/test/fixedbugs/issue22200b.go
index ce20923..5c2d7ca 100644
--- a/gcc/testsuite/go.test/test/fixedbugs/issue22200b.go
+++ b/gcc/testsuite/go.test/test/fixedbugs/issue22200b.go
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// +build !386,!amd64p32,!arm,!mips,!mipsle
+// +build !386,!amd64p32,!arm,!mips,!mipsle,!sparc
package p
diff --git a/gcc/testsuite/go.test/test/fixedbugs/issue6036.go b/gcc/testsuite/go.test/test/fixedbugs/issue6036.go
index 8ebef5a..0bac74d 100644
--- a/gcc/testsuite/go.test/test/fixedbugs/issue6036.go
+++ b/gcc/testsuite/go.test/test/fixedbugs/issue6036.go
@@ -1,4 +1,4 @@
-// +build !386,!arm,!mips,!mipsle,!amd64p32
+// +build !386,!arm,!mips,!mipsle,!amd64p32,!sparc
// compile
// Copyright 2013 The Go Authors. All rights reserved.