Author: stsp Date: Tue Sep 1 12:47:43 2015 New Revision: 1700532 URL: http://svn.apache.org/r1700532 Log: Disable perl bindings for the bb-openbsd bot for now. There's a linking problem where perl ends up pulling the wrong svn libs into the process. The fix is not immediately clear but I can reproduce the problem locally. To make the bot green after being red for a long time, we'll temporarily skip perl bindings for now.
Modified: subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh Modified: subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh?rev=1700532&r1=1700531&r2=1700532&view=diff ============================================================================== --- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh (original) +++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svnbuild.sh Tue Sep 1 12:47:43 2015 @@ -25,4 +25,4 @@ set -x export JAVA_HOME=/usr/local/jdk-1.7.0 branch="$(basename $(svn info . | grep ^URL | cut -d' ' -f2))" -(cd .. && gmake BRANCH="$branch" THREADING="no") +(cd .. && gmake BRANCH="$branch" THREADING="no" ENABLE_PERL_BINDINGS="no") Modified: subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh?rev=1700532&r1=1700531&r2=1700532&view=diff ============================================================================== --- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh (original) +++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh Tue Sep 1 12:47:43 2015 @@ -24,7 +24,7 @@ set -x branch="$(basename $(svn info . | grep ^URL | cut -d' ' -f2))" export MALLOC_OPTIONS=S -(cd .. && gmake BRANCH="$branch" THREADING="no" svn-check-bindings) +(cd .. && gmake BRANCH="$branch" THREADING="no" ENABLE_PERL_BINDINGS="no" svn-check-bindings) grep -q "^Result: PASS$" tests.log.bindings.pl || exit 1 grep -q "^OK$" tests.log.bindings.py || exit 1 tail -n 1 tests.log.bindings.rb | grep -q ", 0 failures, 0 errors" || exit 1