Author: rhuijben
Date: Mon Jan 16 22:49:09 2012
New Revision: 1232207
URL: http://svn.apache.org/viewvc?rev=1232207&view=rev
Log:
Extend the test added in r1232202 to handle the tests for files and
directories as the experienced problem appears to apply just to nodes that
are directories in wc.db.
* subversion/tests/cmdline/stat_tests.py
(status_not_present): Extend test.
Modified:
subversion/trunk/subversion/tests/cmdline/stat_tests.py
Modified: subversion/trunk/subversion/tests/cmdline/stat_tests.py
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/stat_tests.py?rev=1232207&r1=1232206&r2=1232207&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/stat_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/stat_tests.py Mon Jan 16 22:49:09
2012
@@ -2001,13 +2001,16 @@ def status_not_present(sbox):
wc_dir = sbox.wc_dir
# iota is a shell script.
- sbox.simple_rm('iota')
- svntest.main.run_svn(None, 'up', '--set-depth', 'exclude', sbox.ospath('A'))
+ sbox.simple_rm('iota', 'A/C')
+ svntest.main.run_svn(None, 'up', '--set-depth', 'exclude',
+ sbox.ospath('A/mu'), sbox.ospath('A/B'))
sbox.simple_commit()
svntest.actions.run_and_verify_svn(None, [], [],'status',
sbox.ospath('iota'),
- sbox.ospath('A'),
+ sbox.ospath('A/B'),
+ sbox.ospath('A/C'),
+ sbox.ospath('A/mu'),
sbox.ospath('no-file'))
########################################################################