You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2016/01/06 18:32:10 UTC

svn commit: r1723387 - /subversion/trunk/subversion/tests/cmdline/relocate_tests.py

Author: philip
Date: Wed Jan  6 17:32:10 2016
New Revision: 1723387

URL: http://svn.apache.org/viewvc?rev=1723387&view=rev
Log:
* subversion/tests/cmdline/relocate_tests.py
  (relocate_with_relative_externals): Followup to r1723385, verify the
   relocate has occurred.

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

Modified: subversion/trunk/subversion/tests/cmdline/relocate_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/relocate_tests.py?rev=1723387&r1=1723386&r2=1723387&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/relocate_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/relocate_tests.py Wed Jan  6 17:32:10 2016
@@ -384,6 +384,18 @@ def relocate_with_relative_externals(sbo
                                      other_repo_url + '/A/B',
                                      other_wc)
 
+  # Check the URLs of various nodes.
+  info_output = {
+        wc_dir:                                   '.*.other$',
+        os.path.join(wc_dir, 'A', 'B', 'G-ext'):  '.*.other/A/D/G$',
+        other_wc:                                 '.*.other/A/B$',
+        os.path.join(other_wc, 'G-ext'):          '.*.other/A/D/G$',
+    }
+
+  for path, pattern in info_output.items():
+    expected_info = { 'URL' : pattern }
+    svntest.actions.run_and_verify_info([expected_info], path)
+
 ########################################################################
 # Run the tests