From f1f7e54fb30295966da20d7e63ca25e42d2790b8 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Fri, 2 Apr 2021 10:44:08 +0200 Subject: [PATCH] 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. --- gcc/testsuite/go.test/test/fixedbugs/issue22200b.go | 2 +- gcc/testsuite/go.test/test/fixedbugs/issue6036.go | 2 +- 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 ce20923334c0..5c2d7ca6ada8 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 8ebef5a447cd..0bac74d20b3b 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. -- 2.47.2