Skip couple of Go tests on 32-bit SPARC
authorEric Botcazou <ebotcazou@adacore.com>
Fri, 2 Apr 2021 08:44:08 +0000 (10:44 +0200)
committerEric Botcazou <ebotcazou@adacore.com>
Fri, 2 Apr 2021 08:47:07 +0000 (10:47 +0200)
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.

gcc/testsuite/go.test/test/fixedbugs/issue22200b.go
gcc/testsuite/go.test/test/fixedbugs/issue6036.go

index ce20923..5c2d7ca 100644 (file)
@@ -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
 
index 8ebef5a..0bac74d 100644 (file)
@@ -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.