https://bugzilla.redhat.com/show_bug.cgi?id=1022983
--- Comment #5 from Matthew Miller mattdm@redhat.com --- (In reply to Adam Miller from comment #4)
Go 1.2 builds on F20 but appears to fail one of the tests ... I'm going to look into it more as I find time but didn't want to remain silent on the BZ.
In the specfile (in both %build and %check) we have
export PATH="$PATH":"$GOROOT"/bin
which means that the system path is first, and so if you have another go package installed that gets called first in the tests. Is that what you're running into? Try making it
export PATH=$GOROOT/bin:$PATH
(Quotes shouldn't be necessary, but whatever.)
On my F19 and F20 systems, with that switched, the tests pass. (And they don't pass if I have the older golang installed and the path the other way.)