On Thursday, November 03, 2011 2:54 AM, "Jonathan Nieder" <jrnie...@gmail.com> wrote: > 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 \
That works? We should mention it in the help output... > --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? > Buildbots are green and I don't remember this one before. Can you set a breakpoint in the test and check which four providers aren't returned? (Or, if that's easier, which one provider _is_ returned.) > Jonathan >