You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/09/11 15:30:58 UTC

svn commit: r1383408 - /subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/tests/cmdline/svnadmin_tests.py

Author: stsp
Date: Tue Sep 11 13:30:57 2012
New Revision: 1383408

URL: http://svn.apache.org/viewvc?rev=1383408&view=rev
Log:
On the 1.6.x-testsuite-apr-hash-order branch, allow the svnadmin test 8
to pass with APR 1.4.6 (svnadmin_tests.py 8: 'svnadmin hotcopy PATH .').

* subversion/tests/cmdline/svnadmin_tests.py
  (hotcopy_dot): Use the new compare_dump_files() helper to compare dump
   files. This isn't required in 1.7.x and trunk since properties are
   listed in alphabetical order on these branches.

Modified:
    subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/tests/cmdline/svnadmin_tests.py

Modified: subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/tests/cmdline/svnadmin_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/tests/cmdline/svnadmin_tests.py?rev=1383408&r1=1383407&r2=1383408&view=diff
==============================================================================
--- subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/tests/cmdline/svnadmin_tests.py (original)
+++ subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/tests/cmdline/svnadmin_tests.py Tue Sep 11 13:30:57 2012
@@ -351,8 +351,9 @@ def hotcopy_dot(sbox):
   exit_code, backout, backerr = svntest.main.run_svnadmin("dump",
                                                           backup_dir,
                                                           '--quiet')
-  if origerr or backerr or origout != backout:
+  if origerr or backerr:
     raise svntest.Failure
+  svntest.verify.compare_dump_files("Dump files", "DUMP", origout, backout)
 
 #----------------------------------------------------------------------