[Bug 222854] lang/go make regression-test and upgrade 1.9.1
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Sat Oct 7 20:43:55 UTC 2017
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=222854
Bug ID: 222854
Summary: lang/go make regression-test and upgrade 1.9.1
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Only Me
Priority: ---
Component: Individual Port(s)
Assignee: jlaffaye at FreeBSD.org
Reporter: fred.woods.se at gmail.com
Flags: maintainer-feedback?(jlaffaye at FreeBSD.org)
Assignee: jlaffaye at FreeBSD.org
the run.bash script fails with ulimit Illegal option -T when running make
regression-test.
Error can be fixed by changing 43 of work/go/src/run.bash:
if ulimit -T &> /dev/null; then
to:
if ulimit -T 2> /dev/null; then
Even if you change run.bash to use #!/usr/local/bin/bash, the -T option
generates the same error as using the native sh shell.
The Makefile line 75 also needs an argument for the -banner option, recommend:
-banner "`uname -srp` "
The only test failures I see are are due to the way I setup the jail
environment (no 127.0.0.1 address).
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list