Hi,
Building r1196980:
svn export ~/src/subversion svn-test
cd svn-test
./autogen.sh
mkdir BUILD
cd BUILD
PYTHON=python RUBY=ruby \
../configure --prefix=$HOME/opt/subversion \
--mandir=\$${prefix}/share/man \
--with-apr=/usr \
--with-apr-util=/usr \
--with-neon=/usr \
--with-serf=/usr \
--with-berkeley-db=:::db \
--with-sasl=/usr \
--with-editor=editor \
--with-ruby-sitedir=/usr/lib/ruby \
--with-swig=/usr \
--with-kwallet --with-gnome-keyring \
--enable-javahl --without-jikes \
--with-jdk=/usr/lib/jvm/default-java \
--with-junit=/usr/share/java/junit.jar \
--with-apxs=/usr/bin/apxs2 --disable-mod-activation
make check
I get the following result:
Running tests in auth-test [1/89].............................FAILURE
Running tests in cache-test [2/89]............................success
[... lots of successes snipped ...]
The failure is described in tests.log:
START: auth-test
svn_tests: E200006: svn_auth_get_platform_specific_client_providers
should return an array of 5 providers
FAIL: lt-auth-test 1: test retrieving platform-specific auth providers
END: auth-test
ELAPSED: auth-test 0:00:00.179133
Indeed, instrumenting the test, we learn that the actual number of
providers returned is 1.
Known problem?
Jonathan