Hi,
"hudson_solaris" has an underscore in it's host name, we're unable to
run our qa tests on this host due to the underscore.
Is it possible to have the hostname changed? "jenkins-solaris" perhaps?
Cheers,
Peter.
It turns out the recent failures on Solaris x64 hudson are due to an
illegal character in the URI host name string:
Testcase:
testCrossPlatformNormalise(org.apache.river.impl.net.UriStringTest):
Caused an ERROR
Illegal character in hostname at index 13:
http://hudson_solaris:9081/nonactivatablegroup-dl.jar
java.net.URISyntaxException: Illegal character in hostname at index 13:
http://hudson_solaris:9081/nonactivatablegroup-dl.jar
The hostname is incorrectly parsed only as an authority component when
passed to the constructor URI(String str), leading to the errors seen in
failing hudson tests.
So the good news is, it isn't a problem with Solaris x64.