> -----Original Message----- > From: Daniel Shahaf [mailto:d...@daniel.shahaf.name] > Sent: zaterdag 22 februari 2014 16:52 > To: Johan Corveleyn > Cc: Ben Reser; Subversion Development > Subject: Re: 1.9.0-alpha1 up for testing/signing > > Johan Corveleyn wrote on Sat, Feb 22, 2014 at 15:46:21 +0100: > > On Thu, Feb 13, 2014 at 7:30 AM, Ben Reser <b...@reser.org> wrote: > > > The 1.9.0-alpha1 release artifacts are now available for testing/signing. > > > Please get the tarballs from > > > https://dist.apache.org/repos/dist/dev/subversion > > > and add your signatures there. There's no particular schedule to this and > I > > > wouldn't be surprised if we don't find some sort of problems in testing. > > > > > > Thanks! > > > > Another failure, when I test with FSX (over ra_local). The test run stops > with: > > > > [[[ > > ... > > [049/107] wc-test.exe...................................................success > > [050/107] window-test.exe...............................................success > > [051/107] changes-test.exeTraceback (most recent call last): > > File "win-tests.py", line 766, in <module> > > failed = th.run(tests_to_run) > > File "C:\research\svn\client_build\subversion-1.9.0- > alpha1\build\run_tests.py", > > line 198, in run > > failed = self._run_test(prog, cnt, len(list)) or failed > > File "C:\research\svn\client_build\subversion-1.9.0- > alpha1\build\run_tests.py", > > line 612, in _run_test > > os.chdir(progdir) > > WindowsError: [Error 2] The system cannot find the file specified: > > 'subversion/tests/libsvn_fs_base' > > ]]] > > > > I don't have changes-test.exe built. I don't compile with bdb, maybe > > that's the problem? So why is the test suite trying to run this test > > while I have no bdb enabled (assuming changes-test is bdb-specific)? > > Does this get you farther? > > Index: win-tests.py > ========================================================== > ========= > --- win-tests.py (revision 1570855) > +++ win-tests.py (working copy) > @@ -257,8 +257,8 @@ > if not fs_type: > fs_type = 'fsfs' > > -# Don't run bdb tests if they want to test fsfs > -if fs_type == 'fsfs': > +# Don't run bdb tests if they want to test fsfs or fsx > +if fs_type != 'bdb': > all_tests = gen_obj.test_progs + gen_obj.scripts
Applied a similar fix in r1571028. Thanks for finding this problem. (I always build with BDB, so I didn't know about this list) Bert