You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ko...@apache.org on 2015/10/02 17:46:17 UTC

svn commit: r1706437 - /subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py

Author: kotkov
Date: Fri Oct  2 15:46:16 2015
New Revision: 1706437

URL: http://svn.apache.org/viewvc?rev=1706437&view=rev
Log:
Following up on r1706428, extend the new test with another check.

* subversion/tests/cmdline/svnadmin_tests.py
  (dump_no_op_change): Test both svn log for the revision with a no-op
   change (r2), and for path with a no-op change (/bar) in its history.

Modified:
    subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py?rev=1706437&r1=1706436&r2=1706437&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svnadmin_tests.py Fri Oct  2 15:46:16 2015
@@ -3232,10 +3232,17 @@ def dump_no_op_change(sbox):
   # reconstructed repositories.  This used to fail as described in the
   # Issue 4598 (https://issues.apache.org/jira/browse/SVN-4598), at least
   # around r1706415.
+  #
+  # Test svn log -v for r2:
   _, expected, _ = svntest.actions.run_and_verify_svn(None, [], 'log', '-v',
                                                       '-r2', sbox.repo_url)
   svntest.actions.run_and_verify_svn(expected, [], 'log',  '-v',
                                      '-r2', sbox2.repo_url)
+  # Test svn log -v for /bar:
+  _, expected, _ = svntest.actions.run_and_verify_svn(None, [], 'log', '-v',
+                                                      sbox.repo_url + '/bar')
+  svntest.actions.run_and_verify_svn(expected, [], 'log',  '-v',
+                                     sbox2.repo_url + '/bar')
 
 ########################################################################
 # Run the tests