diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-11-21 18:22:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-11-21 18:22:05 +0000 |
commit | 6f7ccafa919acbae98e82871e122fb39593cc52a (patch) | |
tree | cc0447c3026814b91fce5321db5213fb5eeea0f8 /libgo/testsuite | |
parent | 12829505f233db52f7f552f1a104ecd3cac8de88 (diff) | |
download | gcc-6f7ccafa919acbae98e82871e122fb39593cc52a.zip gcc-6f7ccafa919acbae98e82871e122fb39593cc52a.tar.gz gcc-6f7ccafa919acbae98e82871e122fb39593cc52a.tar.bz2 |
runtime: GOARCH values for ppc64 BE & LE
ppc64 for BE
ppc64le for LE
issue 8654
From-SVN: r217941
Diffstat (limited to 'libgo/testsuite')
-rwxr-xr-x | libgo/testsuite/gotest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/testsuite/gotest b/libgo/testsuite/gotest index 39beac3..1bcd4b9 100755 --- a/libgo/testsuite/gotest +++ b/libgo/testsuite/gotest @@ -379,7 +379,7 @@ localname() { { text="T" case "$GOARCH" in - ppc64) text="[TD]" ;; + ppc64*) text="[TD]" ;; esac symtogo='sed -e s/_test/XXXtest/ -e s/.*_\([^_]*\.\)/\1/ -e s/XXXtest/_test/' |