Author: stsp
Date: Sun Mar 15 11:00:39 2020
New Revision: 1875209
URL: http://svn.apache.org/viewvc?rev=1875209&view=rev
Log:
* tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh: Detect skipped
Python bindings tests and do not flag the tests as failed if they occur.
Modified:
subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh
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=1875209&r1=1875208&r2=1875209&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh
(original)
+++ subversion/trunk/tools/buildbot/slaves/bb-openbsd/svncheck-bindings.sh Sun
Mar 15 11:00:39 2020
@@ -27,6 +27,7 @@ branch="${url##*/}"
export MALLOC_OPTIONS=S
(cd .. && gmake BRANCH="$branch" THREADING="no" JAVA="no" svn-check-bindings)
grep -q "^Result: PASS$" tests.log.bindings.pl || exit 1
-grep -q "^OK$" tests.log.bindings.py || exit 1
+grep -q "^OK$" tests.log.bindings.py || \
+ grep -q "^OK (skipped=[0-9]" tests.log.bindings.py || exit 1
grep -q ", 0 failures, 0 errors" tests.log.bindings.rb || exit 1
exit 0