You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2018/11/01 07:47:27 UTC

svn commit: r1845402 - /subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck-bindings.sh

Author: brane
Date: Thu Nov  1 07:47:26 2018
New Revision: 1845402

URL: http://svn.apache.org/viewvc?rev=1845402&view=rev
Log:
[In tools/buildbot/slaves/svn-x64-macosx]
* svncheck-bindings.sh: Install before running tests, to work around the OSX
   security restrictions on using $DYLD_LIBRARY_PATH.

Modified:
    subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck-bindings.sh

Modified: subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck-bindings.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck-bindings.sh?rev=1845402&r1=1845401&r2=1845402&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck-bindings.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck-bindings.sh Thu Nov  1 07:47:26 2018
@@ -24,6 +24,8 @@ run_tests() {
 
     echo "============ make check-${check}"
     cd ${absbld}
+    make -s install
+    make -s install-${check}
     make check-${check} ${cleanup} || exit 1
 }