rupert THURNER <rupert.thur...@gmail.com> writes: > it passed the first time, and then i always get an error - but i suppose > this is unrelated? > > DIFF STDOUT: > --- EXPECTED STDOUT > +++ ACTUAL STDOUT > @@ -1,12 +1,12 @@ > 2 2 jrandom . > 2 1 jrandom A > + 2 1 jrandom A/mu > 2 1 jrandom A/B > 2 1 jrandom A/B/lambda > 2 1 jrandom A/B/E > 2 1 jrandom A/B/E/alpha > 2 1 jrandom A/B/E/beta > 2 1 jrandom A/B/F > - 2 1 jrandom A/mu > 2 1 jrandom A/C > 2 1 jrandom A/D > 2 1 jrandom A/D/gamma
That shows there is a bug in the testsuite, please try this patch: Index: subversion/tests/cmdline/copy_tests.py =================================================================== --- subversion/tests/cmdline/copy_tests.py (revision 1220660) +++ subversion/tests/cmdline/copy_tests.py (working copy) @@ -4654,9 +4654,12 @@ os.chdir(was_cwd) os.chdir(wc_dir) - svntest.actions.run_and_verify_svn(None, verify_out, [], 'status', '-v') + rv, verify_out2, err = main.run_svn (None, 'status', '-v') os.chdir(was_cwd) + if verify_out.sort() != verify_out2.sort(): + raise svntest.Failure + def move_added_nodes(sbox): """move added nodes""" -- uberSVN: Apache Subversion Made Easy http://www.uberSVN.com