[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: 1.7.1 up for testing / signing

From: Philip Martin <philip.martin_at_wandisco.com>
Date: Mon, 19 Dec 2011 10:49:20 +0000

rupert THURNER <rupert.thurner_at_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
Received on 2011-12-19 11:49:58 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.