Author: julianfoad
Date: Mon May 17 12:27:10 2010
New Revision: 945111
URL: http://svn.apache.org/viewvc?rev=945111&view=rev
Log:
* tools/buildbot/slaves/centos/svncheck.sh
Let the second argument determine which RA layer to use:
ra_neon, ra_serf, ra_svn, ra_local; default is ra_neon.
Modified:
subversion/trunk/tools/buildbot/slaves/centos/svncheck.sh
Modified: subversion/trunk/tools/buildbot/slaves/centos/svncheck.sh
URL:
http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/centos/svncheck.sh?rev=945111&r1=945110&r2=945111&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/centos/svncheck.sh (original)
+++ subversion/trunk/tools/buildbot/slaves/centos/svncheck.sh Mon May 17
12:27:10 2010
@@ -33,8 +33,25 @@ echo "========= mount RAM disc"
mkdir -p subversion/tests/cmdline/svn-test-work
test -e ../mount-ramdrive && ../mount-ramdrive
-echo "========= make davautocheck"
-make davautocheck FS_TYPE=$1 CLEANUP=1 || exit $?
+echo "========= make"
+case "$2" in
+ ""|ra_dav|ra_neon)
+ make davautocheck FS_TYPE=$1 HTTP_LIBRARY=neon CLEANUP=1 || exit $?
+ ;;
+ ra_serf)
+ make davautocheck FS_TYPE=$1 HTTP_LIBRARY=serf CLEANUP=1 || exit $?
+ ;;
+ ra_svn)
+ make svnserveautocheck FS_TYPE="$1" CLEANUP=1 || exit $?
+ ;;
+ ra_local)
+ make check FS_TYPE="$1" CLEANUP=1 || exit $?
+ ;;
+ *)
+ echo "Bad RA specifier (arg #2): '$2'."
+ exit 1
+ ;;
+esac
# the bindings are checked with svncheck-bindings.sh
exit 0