Ben Reser <ben@reser.org> writes:
> Cut from r14666 on 1.2.x branch.
>
> http://fornix.brain.org/subversion/
>
> -rw-rw-r-- 1 svnrm svnrm 6985339 May 9 19:00 subversion-1.2.0-rc3.tar.bz2
> -rw-rw-r-- 1 svnrm svnrm 8589140 May 9 19:00 subversion-1.2.0-rc3.tar.gz
> -rw-rw-r-- 1 svnrm svnrm 11440616 May 9 19:04 subversion-1.2.0-rc3.zip
Thanks as always, Ben!
Here are my signatures for the two Unix source tarballs. I verified
that their content is identical, and that it passes 'make check' over
all combinations of RA layer and FS back end.
subversion-1.2.0-rc3.tar.bz2.asc:
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQBCgC6CvJ27E9sAokgRAtiPAKCnKpWLoVERHwkIC8pRdps/w9i2OgCeLKZY
a3od14cLH0qhtQ5yV2McWHE=
=obbz
-----END PGP SIGNATURE-----
subversion-1.2.0-rc3.tar.gz.asc:
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQBCgC5qvJ27E9sAokgRAmv8AKDp4obyWrUWrsYSvbWVpCwd0BGlqQCgxNjW
14dW6ZVjnJRYkhtJ3e/GxcU=
=x+t0
-----END PGP SIGNATURE-----
I'm still working on perfecting this 6-way test script (I had it
perfected for rc1; incredibly, seem to have lost that copy), but maybe
this will save people some time even as is:
make-checks.sh:
--------------------8-<-------cut-here---------8-<-----------------------
#!/bin/sh
# Note: httpd and svnserve must be running already!
RESULTS_DIR=svn-checks-`date +"%Y-%M-%d_%H:%m"`
mkdir ${RESULTS_DIR}
for FS_BACKEND in fsfs bdb; do
for RA_LAYER in svn http local; do
echo "Testing ${FS_BACKEND} over ${RA_LAYER}..."
if [ ${RA_LAYER} = local ]; then
make check FS_TYPE=${FS_BACKEND}
else
make check BASE_URL=${RA_LAYER}://localhost FS_TYPE=${FS_BACKEND}
fi
mv tests.log ${RESULTS_DIR}/${FS_BACKEND}-${RA_LAYER}-tests.log
echo "Done testing ${FS_BACKEND} over ${RA_LAYER}."
echo "Results in ${RESULTS_DIR}/${FS_BACKEND}-${RA_LAYER}-tests.log."
echo ""
done
done
echo "All 'make check' combinations completed."
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue May 10 05:52:04 2005