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

Re: svn commit: r1220742 - /subversion/trunk/subversion/tests/cmdline/copy_tests.py

From: Daniel Shahaf <danielsh_at_elego.de>
Date: Mon, 19 Dec 2011 18:40:28 +0200

philip_at_apache.org wrote on Mon, Dec 19, 2011 at 13:45:42 -0000:
> Author: philip
> Date: Mon Dec 19 13:45:42 2011
> New Revision: 1220742
>
> URL: http://svn.apache.org/viewvc?rev=1220742&view=rev
> Log:
> * subversion/tests/cmdline/copy_tests.py
> (changed_dir_data_should_match_checkout): Fix spurious FAIL by not
> depending on status order.
>
> Modified:
> subversion/trunk/subversion/tests/cmdline/copy_tests.py
>
> Modified: subversion/trunk/subversion/tests/cmdline/copy_tests.py
> URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/copy_tests.py?rev=1220742&r1=1220741&r2=1220742&view=diff
> ==============================================================================
> --- subversion/trunk/subversion/tests/cmdline/copy_tests.py (original)
> +++ subversion/trunk/subversion/tests/cmdline/copy_tests.py Mon Dec 19 13:45:42 2011
> @@ -4654,9 +4654,15 @@ def changed_dir_data_should_match_checko
>
> 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')

Why not wrap VERIFY_OUT by an svntest.verify.UnorderedOutput() instance?

> os.chdir(was_cwd)
>
> + # The order of the staus output is not absolutely defined, but
> + # otherwise should match
> + svntest.verify.verify_outputs(None,
> + sorted(verify_out2), None,
> + sorted(verify_out), None)
> +
> def move_added_nodes(sbox):
> """move added nodes"""
>
>
>
Received on 2011-12-19 17:41:22 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.