diff mbox series

[testsuite] Skip couple of Go tests on 32-bit SPARC

Message ID 2824545.u9CyjmkKaY@fomalhaut
State New
Headers show
Series [testsuite] Skip couple of Go tests on 32-bit SPARC | expand

Commit Message

Eric Botcazou March 23, 2021, 11:02 a.m. UTC
Since they are already skipped on other 32-bit architectures.

Tested on x86-64/Linux and SPARC/Solaris, OK for the mainline?


2021-03-23  Eric Botcazou  <ebotcazou@adacore.com>

	* go.test/test/fixedbugs/issue6036.go: Skip on sparc.
	* go.test/test/fixedbugs/issue22200b.go: Likewise.
diff mbox series

Patch

diff --git a/gcc/testsuite/go.test/test/fixedbugs/issue22200b.go b/gcc/testsuite/go.test/test/fixedbugs/issue22200b.go
index ce20923334c..5c2d7ca6ada 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 8ebef5a447c..0bac74d20b3 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.