diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-02-13 17:37:02 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2017-02-13 17:37:02 +0000 |
commit | 7953a24c609aab00b163738fff12ff230fc0a5b5 (patch) | |
tree | 20ecceb408f1ecb00d764bf86d91c4ed33078cb0 /libgo | |
parent | d8505fac6b1ce928f418e55e5567ff58a100c7a0 (diff) | |
download | gcc-7953a24c609aab00b163738fff12ff230fc0a5b5.zip gcc-7953a24c609aab00b163738fff12ff230fc0a5b5.tar.gz gcc-7953a24c609aab00b163738fff12ff230fc0a5b5.tar.bz2 |
re PR go/79443 (libgo/math test fails on s390x (undefined symbols cosh, sinh, tanh, hasVX))
PR go/79443
libgo: fix some s390x tests
Add `+build ignore` to ignore tests that rely on s390x assembly code
not yet implemented for gccgo.
Fixes GCC PR 79443.
Reviewed-on: https://go-review.googlesource.com/36909
From-SVN: r245397
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/go/crypto/sha256/fallback_test.go | 1 | ||||
-rw-r--r-- | libgo/go/math/export_s390x_test.go | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libgo/go/crypto/sha256/fallback_test.go b/libgo/go/crypto/sha256/fallback_test.go index 5917a48..1a6e6a5 100644 --- a/libgo/go/crypto/sha256/fallback_test.go +++ b/libgo/go/crypto/sha256/fallback_test.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build ignore // +build s390x package sha256 diff --git a/libgo/go/math/export_s390x_test.go b/libgo/go/math/export_s390x_test.go index 3fdbd86..2e7f584 100644 --- a/libgo/go/math/export_s390x_test.go +++ b/libgo/go/math/export_s390x_test.go @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// +build ignore + package math // Export internal functions and variable for testing. |