This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug go/48243] Several libgo tests fail on Solaris 10/SPARC
- From: "ro at CeBiTec dot Uni-Bielefeld.DE" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 16 Feb 2012 19:21:17 +0000
- Subject: [Bug go/48243] Several libgo tests fail on Solaris 10/SPARC
- Auto-submitted: auto-generated
- References: <bug-48243-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48243
--- Comment #2 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2012-02-16 19:21:17 UTC ---
> --- Comment #1 from Ian Lance Taylor <ian at airs dot com> 2012-02-14 19:44:21 UTC ---
> I think these are all fixed now.
Right. The only failures left are crypto/rand due to the 1040 byte read
limit on /dev/urandom, and several others which seem to be races with
testdata symlinks:
=== libgo tests ===
Running target unix
FAIL: compress/flate
FAIL: crypto/rand
FAIL: image/jpeg
=== libgo Summary for unix ===
# of expected passes 120
# of unexpected failures 3
Running target unix/-m64
FAIL: compress/flate
FAIL: compress/lzw
FAIL: compress/zlib
FAIL: crypto/rand
FAIL: image/jpeg
=== libgo Summary for unix/-m64 ===
# of expected passes 118
# of unexpected failures 5
e.g.
ln: creating symbolic link `../testdata/testdata': File exists
PASS
PASS: compress/bzip2
ln: creating symbolic link `../testdata/testdata': File exists
--- FAIL: flate.TestDeflateInflateString (0.08 seconds)
???:1: open ../testdata/e.txt: No such file or directory
???:1: open ../testdata/Mark.Twain-Tom.Sawyer.txt: No such file or
directory
FAIL
FAIL: compress/flate
I guess it's best to file two separate PRs for those issues.
Rainer