You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by hw...@apache.org on 2010/09/06 22:02:24 UTC

svn commit: r993141 [23/25] - in /subversion/branches/performance: ./ build/ac-macros/ build/generator/ contrib/server-side/ notes/ notes/wc-ng/ subversion/bindings/javahl/native/ subversion/bindings/javahl/src/org/apache/subversion/javahl/ subversion/...

Modified: subversion/branches/performance/subversion/tests/cmdline/revert_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/revert_tests.py?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/revert_tests.py (original)
+++ subversion/branches/performance/subversion/tests/cmdline/revert_tests.py Mon Sep  6 20:02:15 2010
@@ -740,20 +740,35 @@ def status_of_missing_dir_after_revert(s
   svntest.actions.run_and_verify_svn(None, expected_output, [], "revert",
                                      A_D_G_path)
 
-  expected_output = svntest.verify.UnorderedOutput(
-    ["D       " + os.path.join(A_D_G_path, "pi") + "\n",
+  deletes = [
+     "D       " + os.path.join(A_D_G_path, "pi") + "\n",
      "D       " + os.path.join(A_D_G_path, "rho") + "\n",
-     "D       " + os.path.join(A_D_G_path, "tau") + "\n"])
+     "D       " + os.path.join(A_D_G_path, "tau") + "\n"
+  ]
+  expected_output = svntest.verify.UnorderedOutput(deletes)
   svntest.actions.run_and_verify_svn(None, expected_output, [],
                                      "status", wc_dir)
 
   svntest.main.safe_rmtree(A_D_G_path)
 
-  expected_output = svntest.verify.UnorderedOutput(
-    ["!       " + A_D_G_path + "\n"])
+  expected_output = ["!       " + A_D_G_path + "\n"]
+
+  if svntest.main.wc_is_singledb(wc_dir):
+    expected_output.extend(deletes)
+
+  expected_output = svntest.verify.UnorderedOutput(expected_output)
+
   svntest.actions.run_and_verify_svn(None, expected_output, [], "status",
                                      wc_dir)
 
+  # When using single-db, we can get back to the virginal state.
+  if svntest.main.wc_is_singledb(wc_dir):
+    svntest.actions.run_and_verify_svn(None, None, [], "revert",
+                                       "-R", A_D_G_path)
+
+    expected_status = svntest.actions.get_virginal_state(wc_dir, 1)
+    svntest.actions.run_and_verify_status(wc_dir, expected_status)
+
 #----------------------------------------------------------------------
 # Test for issue #2804 with replaced directory
 def status_of_missing_dir_after_revert_replaced_with_history_dir(sbox):
@@ -974,6 +989,49 @@ def revert_add_over_not_present_dir(sbox
   svntest.actions.run_and_verify_status(wc_dir, expected_status)
 
 
+def revert_added_tree(sbox):
+  "revert an added tree fails"
+
+  sbox.build()
+  wc_dir = sbox.wc_dir
+  svntest.actions.run_and_verify_svn(None, None, [],
+                                     'mkdir', sbox.ospath('X'), sbox.ospath('X/Y'))
+  expected_status = svntest.actions.get_virginal_state(wc_dir, 1)
+  expected_status.add({
+    'X'   : Item(status='A ', wc_rev=0),
+    'X/Y' : Item(status='A ', wc_rev=0),
+    })
+  svntest.actions.run_and_verify_status(wc_dir, expected_status)
+
+  # Revert is non-recursive and fails, status is unchanged
+  expected_error = '.*Try \'svn revert --depth infinity\'.*'
+  svntest.actions.run_and_verify_svn(None, None, expected_error,
+                                     'revert', sbox.ospath('X'))
+  svntest.actions.run_and_verify_status(wc_dir, expected_status)
+
+
+def revert_child_of_copy(sbox):
+  "revert a child of a copied directory does nothing"
+
+  sbox.build()
+  wc_dir = sbox.wc_dir
+  svntest.actions.run_and_verify_svn(None, None, [],
+                                     'cp', sbox.ospath('A/B/E'), sbox.ospath('A/B/E2'))
+
+  expected_status = svntest.actions.get_virginal_state(wc_dir, 1)
+  expected_status.add({
+    'A/B/E2'       : Item(status='A ', copied='+', wc_rev='-'),
+    'A/B/E2/alpha' : Item(status='  ', copied='+', wc_rev='-'),
+    'A/B/E2/beta'  : Item(status='  ', copied='+', wc_rev='-'),
+    })
+  svntest.actions.run_and_verify_status(wc_dir, expected_status)
+
+  # Revert of child of copy does nothing, status is unchanged
+  svntest.actions.run_and_verify_svn(None, None, [],
+                                     'revert', sbox.ospath('A/B/E2/beta'))
+  svntest.actions.run_and_verify_status(wc_dir, expected_status)
+
+
 ########################################################################
 # Run the tests
 
@@ -1001,6 +1059,8 @@ test_list = [ None,
               revert_replaced_with_history_file_2,
               revert_tree_conflicts_in_updated_files,
               revert_add_over_not_present_dir,
+              revert_added_tree,
+              revert_child_of_copy,
              ]
 
 if __name__ == '__main__':

Modified: subversion/branches/performance/subversion/tests/cmdline/schedule_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/schedule_tests.py?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/schedule_tests.py (original)
+++ subversion/branches/performance/subversion/tests/cmdline/schedule_tests.py Mon Sep  6 20:02:15 2010
@@ -35,6 +35,7 @@ import svntest
 Skip = svntest.testcase.Skip
 SkipUnless = svntest.testcase.SkipUnless
 XFail = svntest.testcase.XFail
+Wimp = svntest.testcase.Wimp
 Item = svntest.wc.StateItem
 
 
@@ -575,8 +576,7 @@ def add_recursive_already_versioned(sbox
 
   wc_dir = sbox.wc_dir
 
-  if svntest.actions.make_repo_and_wc(sbox):
-    return 1
+  svntest.actions.make_repo_and_wc(sbox)
 
   # Create some files, then schedule them for addition
   delta_path = sbox.ospath('delta')
@@ -706,7 +706,7 @@ test_list = [ None,
               SkipUnless(revert_add_executable, svntest.main.is_posix_os),
               revert_delete_files,
               revert_delete_dirs,
-              XFail(unschedule_missing_added),
+              unschedule_missing_added,
               delete_missing,
               revert_inside_newly_added_dir,
               status_add_deleted_directory,

Modified: subversion/branches/performance/subversion/tests/cmdline/stat_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/stat_tests.py?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/stat_tests.py (original)
+++ subversion/branches/performance/subversion/tests/cmdline/stat_tests.py Mon Sep  6 20:02:15 2010
@@ -39,6 +39,7 @@ Skip = svntest.testcase.Skip
 SkipUnless = svntest.testcase.SkipUnless
 XFail = svntest.testcase.XFail
 Item = svntest.wc.StateItem
+UnorderedOutput = svntest.verify.UnorderedOutput
 
 
 
@@ -166,6 +167,7 @@ def status_type_change(sbox):
 
   sbox.build(read_only = True)
   wc_dir = sbox.wc_dir
+  single_db = svntest.main.wc_is_singledb(wc_dir)
 
   os.chdir(wc_dir)
 
@@ -175,39 +177,96 @@ def status_type_change(sbox):
   os.rename('A', 'iota')
   os.rename('was_iota', 'A')
 
-  exit_code, output, err = svntest.actions.run_and_verify_svn(None, None, [],
-                                                              'status')
-  if len(output) != 2:
-    raise svntest.Failure
-  for line in output:
-    if not re.match("~ +(iota|A)", line):
-      raise svntest.Failure
+  if single_db:
+    expected_output = [
+        '~       A\n',
+        '!       A/mu\n',
+        '!       A/B\n',
+        '!       A/B/lambda\n',
+        '!       A/B/E\n',
+        '!       A/B/E/alpha\n',
+        '!       A/B/E/beta\n',
+        '!       A/B/F\n',
+        '!       A/C\n',
+        '!       A/D\n',
+        '!       A/D/gamma\n',
+        '!       A/D/G\n',
+        '!       A/D/G/rho\n',
+        '!       A/D/G/pi\n',
+        '!       A/D/G/tau\n',
+        '!       A/D/H\n',
+        '!       A/D/H/chi\n',
+        '!       A/D/H/omega\n',
+        '!       A/D/H/psi\n',
+        '~       iota\n',
+    ]
+
+    expected_output = [s.replace('/', os.path.sep) for s in expected_output]
+  else:
+    expected_output = [
+        '~       A\n',
+        '~       iota\n',
+    ]
+
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected_output),
+                                     [], 'status')
 
   # Now change the file that is obstructing the versioned dir into an
   # unversioned dir.
   os.remove('A')
   os.mkdir('A')
 
-  exit_code, output, err = svntest.actions.run_and_verify_svn(None, None, [],
-                                                              'status')
-  if len(output) != 2:
-    raise svntest.Failure
-  for line in output:
-    if not re.match("~ +(iota|A)", line):
-      raise svntest.Failure
+  if single_db:
+    # A is a directory again, so it is no longer missing, but it's
+    # descendants are
+    expected_output = [
+        '!       A/mu\n',
+        '!       A/B\n',
+        '!       A/B/lambda\n',
+        '!       A/B/E\n',
+        '!       A/B/E/alpha\n',
+        '!       A/B/E/beta\n',
+        '!       A/B/F\n',
+        '!       A/C\n',
+        '!       A/D\n',
+        '!       A/D/gamma\n',
+        '!       A/D/G\n',
+        '!       A/D/G/rho\n',
+        '!       A/D/G/pi\n',
+        '!       A/D/G/tau\n',
+        '!       A/D/H\n',
+        '!       A/D/H/chi\n',
+        '!       A/D/H/omega\n',
+        '!       A/D/H/psi\n',
+        '~       iota\n',
+    ]
+    # Fix separator for Windows
+    expected_output = [s.replace('/', os.path.sep) for s in expected_output]
+  else:
+    # A misses its administrative area, so it is missing
+    expected_output = [
+        '~       A\n',
+        '~       iota\n',
+    ]
+
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected_output),
+                                     [], 'status')
 
   # Now change the versioned dir that is obstructing the file into an
   # unversioned dir.
   svntest.main.safe_rmtree('iota')
   os.mkdir('iota')
 
-  exit_code, output, err = svntest.actions.run_and_verify_svn(None, None, [],
-                                                              'status')
-  if len(output) != 2:
-    raise svntest.Failure
-  for line in output:
-    if not re.match("~ +(iota|A)", line):
-      raise svntest.Failure
+  if not svntest.main.wc_is_singledb('.'):
+    # A misses its administrative area, so it is still missing and
+    # iota is still obstructed
+    expected_output = [
+        '~       A\n',
+        '~       iota\n',
+    ]
+
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected_output),
+                                     [], 'status')
 
 #----------------------------------------------------------------------
 
@@ -216,6 +275,7 @@ def status_type_change_to_symlink(sbox):
 
   sbox.build(read_only = True)
   wc_dir = sbox.wc_dir
+  single_db = svntest.main.wc_is_singledb(wc_dir)
 
   os.chdir(wc_dir)
 
@@ -225,13 +285,28 @@ def status_type_change_to_symlink(sbox):
   svntest.main.safe_rmtree('A/D')
   os.symlink('bar', 'A/D')
 
-  exit_code, output, err = svntest.actions.run_and_verify_svn(None, None, [],
-                                                              'status')
-  if len(output) != 2:
-    raise svntest.Failure
-  for line in output:
-    if not re.match("~ +(iota|A/D)", line):
-      raise svntest.Failure
+  if single_db:
+    expected_output = [
+        '~       A/D\n',
+        '!       A/D/gamma\n',
+        '!       A/D/G\n',
+        '!       A/D/G/rho\n',
+        '!       A/D/G/pi\n',
+        '!       A/D/G/tau\n',
+        '!       A/D/H\n',
+        '!       A/D/H/chi\n',
+        '!       A/D/H/omega\n',
+        '!       A/D/H/psi\n',
+        '~       iota\n',
+        ]
+  else:
+    expected_output = [
+        '~       A/D\n',
+        '~       iota\n',
+      ]
+
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected_output),
+                                     [], 'status')
 
   # "valid" symlinks
   os.remove('iota')
@@ -239,13 +314,8 @@ def status_type_change_to_symlink(sbox):
   os.symlink('A/mu', 'iota')
   os.symlink('C', 'A/D')
 
-  exit_code, output, err = svntest.actions.run_and_verify_svn(None, None, [],
-                                                              'status')
-  if len(output) != 2:
-    raise svntest.Failure
-  for line in output:
-    if not re.match("~ +(iota|A/D)", line):
-      raise svntest.Failure
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected_output),
+                                     [], 'status')
 
 #----------------------------------------------------------------------
 # Regression test for revision 3686.
@@ -366,7 +436,7 @@ def status_nonrecursive_update_different
 
   os.chdir('A')
   svntest.actions.run_and_verify_svn(None,
-                                     expected_output,
+                                     UnorderedOutput(expected_output),
                                      [],
                                      'status', '-v', '-N', '-u', 'C')
 
@@ -378,7 +448,7 @@ def status_nonrecursive_update_different
 
   os.chdir('C')
   svntest.actions.run_and_verify_svn(None,
-                                     expected_output,
+                                     UnorderedOutput(expected_output),
                                      [],
                                      'status', '-v', '-N', '-u', '.')
 
@@ -803,8 +873,11 @@ def missing_dir_in_anchor(sbox):
   svntest.actions.run_and_verify_status(wc_dir, expected_status)
 
   # At one point this caused a "foo not locked" error
+  is_singledb = svntest.main.wc_is_singledb(foo_path)
   svntest.main.safe_rmtree(foo_path)
   expected_status.tweak('foo', status='! ', wc_rev='?')
+  if is_singledb:
+    expected_status.tweak('foo', entry_status='A ', entry_rev='0')
   svntest.actions.run_and_verify_status(wc_dir, expected_status)
 
 
@@ -907,25 +980,55 @@ def status_missing_dir(sbox):
   # ok, blow away the A/D/G directory
   svntest.main.safe_rmtree(a_d_g)
 
-  expected = svntest.verify.UnorderedOutput(["!       " + a_d_g + "\n"])
-  svntest.actions.run_and_verify_svn(None, expected, [], "status", wc_dir)
+  if svntest.main.wc_is_singledb(wc_dir):
+    expected = [
+                 '!       A/D/G\n',
+                 '!       A/D/G/rho\n',
+                 '!       A/D/G/pi\n',
+                 '!       A/D/G/tau\n',
+               ]
+    expected = [ s.replace('A/D/G', a_d_g).replace('/', os.path.sep)
+                 for s in expected ]
+  else:
+    expected = ["!       " + a_d_g + "\n"]
+
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected), [],
+                                     "status", wc_dir)
 
-  expected = svntest.verify.UnorderedOutput(
-         ["        *            " + os.path.join(a_d_g, "pi") + "\n",
+  if svntest.main.wc_is_singledb(wc_dir):
+    expected = [
+          "!                1   " + a_d_g + "\n",
+          "!                1   " + os.path.join(a_d_g, "rho") + "\n",
+          "!                1   " + os.path.join(a_d_g, "pi") + "\n",
+          "!                1   " + os.path.join(a_d_g, "tau") + "\n",
+          "Status against revision:      1\n" ]
+  else:
+    expected = [
+          "        *            " + os.path.join(a_d_g, "pi") + "\n",
           "        *            " + os.path.join(a_d_g, "rho") + "\n",
           "        *            " + os.path.join(a_d_g, "tau") + "\n",
           "!       *       ?    " + a_d_g + "\n",
           "        *        1   " + os.path.join(wc_dir, "A", "D") + "\n",
-          "Status against revision:      1\n" ])
+          "Status against revision:      1\n" ]
 
   # now run status -u, we should be able to do this without crashing
-  svntest.actions.run_and_verify_svn(None, expected, [],
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected), [],
                                      "status", "-u", wc_dir)
 
   # Finally run an explicit status request directly on the missing directory.
-  svntest.actions.run_and_verify_svn(None,
-                                     ["!       " + a_d_g + "\n"],
-                                     [], "status", a_d_g)
+  if svntest.main.wc_is_singledb(wc_dir):
+    expected = [
+                  "!       A/D/G\n",
+                  "!       A/D/G/rho\n",
+                  "!       A/D/G/pi\n",
+                  "!       A/D/G/tau\n",
+               ]
+    expected = [ s.replace('A/D/G', a_d_g).replace('/', os.path.sep)
+                 for s in expected ]
+  else:
+    expected = ["!       " + a_d_g + "\n"]
+  svntest.actions.run_and_verify_svn(None, UnorderedOutput(expected), [],
+                                     "status", a_d_g)
 
 def status_add_plus_conflict(sbox):
   "status on conflicted added file"
@@ -1488,6 +1591,8 @@ def status_dash_u_deleted_directories(sb
                                      "status", "-u", "B")
 
   # again, but now from inside B, should give the same output
+  if not os.path.exists('B'):
+    os.mkdir('B')
   os.chdir("B")
   expected = svntest.verify.UnorderedOutput(
          ["D                1   %s\n" % ".",
@@ -1545,7 +1650,35 @@ def status_dash_u_type_change(sbox):
   svntest.main.safe_rmtree('A')
   os.mkdir('A')
 
-  expected = svntest.verify.UnorderedOutput(
+  if svntest.main.wc_is_singledb('.'):
+    output =[
+               "!                1   A/mu\n",
+               "!                1   A/B\n",
+               "!                1   A/B/lambda\n",
+               "!                1   A/B/E\n",
+               "!                1   A/B/E/alpha\n",
+               "!                1   A/B/E/beta\n",
+               "!                1   A/B/F\n",
+               "!                1   A/C\n",
+               "!                1   A/D\n",
+               "!                1   A/D/gamma\n",
+               "!                1   A/D/G\n",
+               "!                1   A/D/G/rho\n",
+               "!                1   A/D/G/pi\n",
+               "!                1   A/D/G/tau\n",
+               "!                1   A/D/H\n",
+               "!                1   A/D/H/chi\n",
+               "!                1   A/D/H/omega\n",
+               "!                1   A/D/H/psi\n",
+               "~                1   iota\n",
+               "Status against revision:      1\n"
+            ]
+
+    expected = svntest.verify.UnorderedOutput(
+                        [s.replace('/', os.path.sep)
+                            for s in  output])
+  else:
+    expected = svntest.verify.UnorderedOutput(
          ["~                1   iota\n",
           "~               ?    A\n",
           "Status against revision:      1\n" ])

Modified: subversion/branches/performance/subversion/tests/cmdline/svnadmin_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnadmin_tests.py?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnadmin_tests.py (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnadmin_tests.py Mon Sep  6 20:02:15 2010
@@ -1162,28 +1162,7 @@ def dont_drop_valid_mergeinfo_during_inc
 
   # Check the resulting mergeinfo.  We expect the exact same results
   # as Part 3.
-  #
-  # Currently this fails because our current logic mapping mergeinfo revs
-  # in the load stream to their new values based on the offset of the
-  # target repository is quite flawed.  Right now this is the resulting
-  # mergeinfo:
-  #
-  #    Properties on 'svnadmin_tests-21\Projects\Project-X\branches\B1\B
-  #      svn:mergeinfo
-  #        /Projects/Project-X/branches/B2/B/E:11-12
-  #        /Projects/Project-X/trunk/B/E:5-6,8-9
-  #    Properties on 'svnadmin_tests-21\Projects\Project-X\branches\B1':
-  #      svn:mergeinfo
-  #        /Projects/Project-X/branches/B2:11-18
-  #                                           ^^
-  #                                 The *only* correct rev here!
-  #        /Projects/Project-X/trunk:6,9
-  #    Properties on 'svnadmin_tests-21\Projects\Project-X\branches\B2':
-  #      svn:mergeinfo
-  #        /Projects/Project-X/trunk:9
-  #
-  # See http://subversion.tigris.org/issues/show_bug.cgi?id=3020#desc16 for
-  # more info.
+  # See http://subversion.tigris.org/issues/show_bug.cgi?id=3020#desc16.
   svntest.actions.run_and_verify_svn(None, expected_output, [],
                                      'propget', 'svn:mergeinfo', '-R',
                                      sbox.repo_url)
@@ -1276,7 +1255,7 @@ test_list = [ None,
               create_in_repo_subdir,
               SkipUnless(verify_with_invalid_revprops,
                          svntest.main.is_fs_type_fsfs),
-              XFail(dont_drop_valid_mergeinfo_during_incremental_loads),
+              dont_drop_valid_mergeinfo_during_incremental_loads,
               SkipUnless(hotcopy_symlink, svntest.main.is_posix_os),
              ]
 

Modified: subversion/branches/performance/subversion/tests/cmdline/svnrdump_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnrdump_tests.py?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnrdump_tests.py (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnrdump_tests.py Mon Sep  6 20:02:15 2010
@@ -41,25 +41,143 @@ XFail = svntest.testcase.XFail
 Item = svntest.wc.StateItem
 Wimp = svntest.testcase.Wimp
 
-def basic_svnrdump(sbox):
+######################################################################
+# Helper routines
+
+def build_repos(sbox):
+  """Build an empty sandbox repository"""
+
+  # Cleanup after the last run by removing any left-over repository.
+  svntest.main.safe_rmtree(sbox.repo_dir)
+
+  # Create an empty repository.
+  svntest.main.create_repos(sbox.repo_dir)
+
+def run_dump_test(sbox, dumpfile_name):
+  """Load a dumpfile using 'svnadmin load', dump it with 'svnrdump
+  dump' and check that the same dumpfile is produced"""
+
+  # Create an empty sanbox repository
+  build_repos(sbox)
+
+  # This directory contains all the dump files
+  svnrdump_tests_dir = os.path.join(os.path.dirname(sys.argv[0]),
+                                   'svnrdump_tests_data')
+
+  # Load the specified dump file into the sbox repository using
+  # svnadmin load
+  svnadmin_dumpfile = open(os.path.join(svnrdump_tests_dir,
+                                        dumpfile_name),
+                           'rb').readlines()
+
+  svntest.actions.run_and_verify_load(sbox.repo_dir, svnadmin_dumpfile)
+
+  # Create a dump file using svnrdump
+  svnrdump_dumpfile = \
+      svntest.actions.run_and_verify_svnrdump(None, svntest.verify.AnyOutput,
+                                              [], 0, '-q', 'dump',
+                                              sbox.repo_url)
+
+  # Compare the output from stdout
+  svntest.verify.compare_and_display_lines(
+    "Dump files", "DUMP", svnadmin_dumpfile, svnrdump_dumpfile)
+
+def run_load_test(sbox, dumpfile_name):
+  """Load a dumpfile using 'svnrdump load', dump it with 'svnadmin
+  dump' and check that the same dumpfile is produced"""
+
+  # Create an empty sanbox repository
+  build_repos(sbox)
+
+  # Create the revprop-change hook for this test
+  svntest.actions.enable_revprop_changes(sbox.repo_dir)
+
+  # This directory contains all the dump files
+  svnrdump_tests_dir = os.path.join(os.path.dirname(sys.argv[0]),
+                                   'svnrdump_tests_data')
+
+  # Load the specified dump file into the sbox repository using
+  # svnrdump load
+  svnrdump_dumpfile = open(os.path.join(svnrdump_tests_dir,
+                                        dumpfile_name),
+                           'rb').readlines()
+
+  # Set the UUID of the sbox repository to the UUID specified in the
+  # dumpfile ### RA layer doesn't have a set_uuid functionality
+  uuid = svnrdump_dumpfile[2].split(' ')[1][:-1]
+  svntest.actions.run_and_verify_svnadmin2("Setting UUID", None, None, 0,
+                                           'setuuid', sbox.repo_dir,
+                                           uuid)
+
+  svntest.actions.run_and_verify_svnrdump(svnrdump_dumpfile,
+                                          svntest.verify.AnyOutput,
+                                          [], 0, '-q', 'load',
+                                          sbox.repo_url)
+
+  # Create a dump file using svnadmin dump
+  svnadmin_dumpfile = svntest.actions.run_and_verify_dump(sbox.repo_dir, True)
+
+  # Compare the output from stdout
+  svntest.verify.compare_and_display_lines(
+    "Dump files", "DUMP", svnrdump_dumpfile, svnadmin_dumpfile)
+
+######################################################################
+# Tests
+
+def basic_dump(sbox):
   "dump the standard sbox repos"
   sbox.build(read_only = True, create_wc = False)
 
-  r, out, err = svntest.main.run_svnrdump(sbox.repo_url)
-
-  if (r != 0):
-    raise svntest.Failure('Result code not 0')
+  out = \
+      svntest.actions.run_and_verify_svnrdump(None, svntest.verify.AnyOutput,
+                                              [], 0, '-q', 'dump',
+                                              sbox.repo_url)
 
   if not out[0].startswith('SVN-fs-dump-format-version:'):
     raise svntest.Failure('No valid output')
 
+def revision_0_dump(sbox):
+  "dump revision zero"
+  run_dump_test(sbox, "revision-0.dump")
+
+def revision_0_load(sbox):
+  "load revision zero"
+  run_load_test(sbox, "revision-0.dump")
+
+# skeleton.dump repository layout
+#
+#   Projects/       (Added r1)
+#     README        (Added r2)
+#     Project-X     (Added r3)
+#     Project-Y     (Added r4)
+#     Project-Z     (Added r5)
+#     docs/         (Added r6)
+#       README      (Added r6)
+
+def skeleton_load(sbox):
+  "skeleton repository"
+  run_load_test(sbox, "skeleton.dump")
+
+def copy_and_modify_dump(sbox):
+  "copy and modify dump"
+  run_dump_test(sbox, "copy-and-modify.dump")
+
+def copy_and_modify_load(sbox):
+  "copy and modify load"
+  run_load_test(sbox, "copy-and-modify.dump")
+  
 ########################################################################
 # Run the tests
 
 
 # list all tests here, starting with None:
 test_list = [ None,
-              basic_svnrdump,
+              basic_dump,
+              revision_0_dump,
+              revision_0_load,
+              skeleton_load,
+              copy_and_modify_load,
+              Wimp("Need to fix headers in RA layer", copy_and_modify_dump),
              ]
 
 if __name__ == '__main__':

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-and-modify.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-and-modify.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-and-modify.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-and-modify.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 6ad9f820-0205-0410-94a2-c8cf366bb2
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 1149e75a1dc9b23c9138242a2e7d255f
-Prop-content-sha1: (svn:date) 51b023ca17e273bb79c1b6921d6180099dfa96d0
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 112
-Prop-content-md5: (svn:log) 028454ec513c889b513ba2840bcdef1a
-Prop-content-sha1: (svn:log) e471eead535637bfd0d9cd8f44b6d36621ffb9b8
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 82b427150f118980996d1ff2f20c8ed9
-Prop-content-sha1: (svn:date) 0da5c3bee3e0d93cbe0d7094973bb169db5f184f
 Content-length: 112
 
 K 10
@@ -52,12 +44,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 135
-Prop-content-md5: (svn:log) 21e740d34f10f1962e0e115eff7b00ce
-Prop-content-sha1: (svn:log) 4f1bff081e7cdc7cb82c6859162ee21010c86d60
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 822d6ff42b93d5f3429b9f1db1341a0c
-Prop-content-sha1: (svn:date) 1192c3c4f4a4af789ef996b3f7cdc3cce4e3484e
 Content-length: 135
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-bad-line-endings.expected.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-bad-line-endings.expected.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-bad-line-endings.expected.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-bad-line-endings.expected.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 0e893bae-2d4c-452c-8616-b774d5b910
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 73ccd9590efcdc0aeb606b49472858fe
-Prop-content-sha1: (svn:date) d146dbd8885d0e01126b0a779130bcac498debf6
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 150
-Prop-content-md5: (svn:log) d3b135229c6d09529e7e635479ab346e
-Prop-content-sha1: (svn:log) 0c0eb26fce72417dee125f93b85a627d3e63b273
-Prop-content-md5: (svn:author) 9dd4c0f7c00a505a9bce62f9ee5096d4
-Prop-content-sha1: (svn:author) 1714ef8b18515a185c9e33512946961b437df4d1
-Prop-content-md5: (svn:date) dc15c87f7ae25d0af3c4a1d414062c93
-Prop-content-sha1: (svn:date) ac67780acd8acbfc2e0c266aa3ec08cbccc623d9
 Content-length: 150
 
 K 10
@@ -44,8 +36,6 @@ Node-path: 
 Node-kind: dir
 Node-action: change
 Prop-content-length: 54
-Prop-content-md5: (svn:ignore) a1b3616b50119b5687b2153eaf3c2671
-Prop-content-sha1: (svn:ignore) c2f8e23b4b55368a8ff3f8306076c59366d312d8
 Content-length: 54
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version-and-modify.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version-and-modify.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version-and-modify.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version-and-modify.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 5bd4ad05-a105-0410-b7b7-c014cebbdc
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) fd4090f2960efcdf6abf5454fd05cf61
-Prop-content-sha1: (svn:date) 5acb4fce316e7bcf08732f17f2110f37d5280e46
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 103
-Prop-content-md5: (svn:log) 5561542342419b28f1e047fa049fcd97
-Prop-content-sha1: (svn:log) 86f954fb5b1d38eaf94e98081349e2c3cd57ca2e
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 4c704226217ff1187f5b6e76ab2ac76d
-Prop-content-sha1: (svn:date) d9f19ca5f3ec340dd8f12b69519b2e4fd09c8a84
 Content-length: 103
 
 K 10
@@ -67,12 +59,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 116
-Prop-content-md5: (svn:log) cb12c9f5c240b1269cfae7d313a00cc3
-Prop-content-sha1: (svn:log) 2298d68cb3248d3b8b771094072db7f1da76d51b
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) b2e92f1550a6e7e4013780d6aa3a8c64
-Prop-content-sha1: (svn:date) f41a4e0c5eaae0b7102290ac93f6d388adc87e39
 Content-length: 116
 
 K 10
@@ -105,12 +91,6 @@ first version
 
 Revision-number: 3
 Prop-content-length: 117
-Prop-content-md5: (svn:log) 493e30551e54923e3ab2f42c19425d66
-Prop-content-sha1: (svn:log) fc3a1195fec09f2033340b4446661afd2ff66d6e
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 48458d341152b911b6fad8b8562fd43c
-Prop-content-sha1: (svn:date) 324d729438bf679dfce060d0bb490cd91e1ae122
 Content-length: 117
 
 K 10
@@ -141,12 +121,6 @@ second version
 
 Revision-number: 4
 Prop-content-length: 122
-Prop-content-md5: (svn:log) d09923504d20bd3b1862d2acd117c856
-Prop-content-sha1: (svn:log) 39b7db5a437d09a99a5ffb8dc471825480227732
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) cc777234c61a92b795cac28418e4b2c8
-Prop-content-sha1: (svn:date) 52e42bc0954bf4e2045fc5ca3c6deb8c6fa0ee8f
 Content-length: 122
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-from-previous-version.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: c542f1c4-a005-0410-b9aa-b3fbdc38f8
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 71c1690393b5a56e01e7a2b7c908a780
-Prop-content-sha1: (svn:date) 694de0c9c45d5e19b17955cc997d09e4da39c7a7
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 104
-Prop-content-md5: (svn:log) 4b85ef081cea4427d322b9a5ae074883
-Prop-content-sha1: (svn:log) 76c5e51fa8093ca45c09fe9db28d2a7e2f542fda
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 1fe09cb2b902d6b29446da12dc23f25d
-Prop-content-sha1: (svn:date) 1459fb9c21694e991ab3b2e583a4066efe9387bc
 Content-length: 104
 
 K 10
@@ -68,12 +60,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 119
-Prop-content-md5: (svn:log) 0549646e1584cced67f1092212d2be1d
-Prop-content-sha1: (svn:log) 5d0c5ed2b84ac7525314910591d39ec65d9e50e5
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 0d616763dde65ede079e11c65478e2e8
-Prop-content-sha1: (svn:date) 15ad3d0c864290db9de4df7517643b3fd5281f5b
 Content-length: 119
 
 K 10
@@ -106,12 +92,6 @@ first version of file
 
 Revision-number: 3
 Prop-content-length: 120
-Prop-content-md5: (svn:log) 916871deb9ac5526fca40db76a72985c
-Prop-content-sha1: (svn:log) 1aad072bdf803ad0de70c443b5182b4100c6f2a3
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) c8502d1e0319e9dda67dfb2fce9e6985
-Prop-content-sha1: (svn:date) 450ec68bc28624f7d50c5bfc7d5090f9c352fb83
 Content-length: 120
 
 K 10
@@ -142,12 +122,6 @@ second version of file
 
 Revision-number: 4
 Prop-content-length: 149
-Prop-content-md5: (svn:log) 44df3ae258e83d634825f2627012ff67
-Prop-content-sha1: (svn:log) 14b594e53f69529822394f921013a4b1416f84ce
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) b99bb052f93b547195b5485df4cb53f5
-Prop-content-sha1: (svn:date) 5707a472c230b623311bb502ef78c68f2ef5ded4
 Content-length: 149
 
 K 10
@@ -179,12 +153,6 @@ PROPS-END
 
 Revision-number: 5
 Prop-content-length: 131
-Prop-content-md5: (svn:log) 36fd1b91d37eaf3c9ed485ade1894c51
-Prop-content-sha1: (svn:log) 5bd65804f11199cfa87593f20e39a12b3b1fe307
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) a035f965a4990e60f05a199d9ef4fcd7
-Prop-content-sha1: (svn:date) 497960a480336a4afe102b3da3bd55b7e0f329e6
 Content-length: 131
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-parent-modify-prop.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-parent-modify-prop.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-parent-modify-prop.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/copy-parent-modify-prop.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 265b4915-c811-0410-a32e-b5d713837d
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 9f53196b42e188e442bc8eb52a1d9d74
-Prop-content-sha1: (svn:date) 9a79567c8ea6602419906c884375b991192809a4
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 113
-Prop-content-md5: (svn:log) 72ffb773423f22336dde7f46496524e7
-Prop-content-sha1: (svn:log) 03dabddc6ce90096d36253e79ac313e12c0ae1e1
-Prop-content-md5: (svn:author) 288404204e3d452229308317344a285d
-Prop-content-sha1: (svn:author) f437cb078acc7c6d79873462334a355eddeb9459
-Prop-content-md5: (svn:date) cb206ac7669eef47b8114c405fae6564
-Prop-content-sha1: (svn:date) ed9527991cf785cdb071bdce4de1c5b40820c37a
 Content-length: 113
 
 K 10
@@ -61,12 +53,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 126
-Prop-content-md5: (svn:log) 20a4aced061c11873a124cc8af5a5ad2
-Prop-content-sha1: (svn:log) 241158d9dac741dce67f2a979db8d3c4ffae0032
-Prop-content-md5: (svn:author) 288404204e3d452229308317344a285d
-Prop-content-sha1: (svn:author) f437cb078acc7c6d79873462334a355eddeb9459
-Prop-content-md5: (svn:date) ff6b2f46707c1d5c7a25da1ac2281676
-Prop-content-sha1: (svn:date) bf4df558ea209dba9f93a3464022cde10e9b4e0f
 Content-length: 126
 
 K 10
@@ -94,8 +80,6 @@ Node-path: dir2/f
 Node-kind: file
 Node-action: change
 Prop-content-length: 27
-Prop-content-md5: (prop) 3a6d0284e743dc4a9b86f97d6dd1a3bf
-Prop-content-sha1: (prop) 39f69c278f46165447f30d10acf54277aaa3d5fc
 Content-length: 27
 
 K 4

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/delete-svn-props.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/delete-svn-props.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/delete-svn-props.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/delete-svn-props.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 776dcb32-51dc-11de-996d-d717ce91f8
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 41c4565f8ca9970f03a0b2974354f2b3
-Prop-content-sha1: (svn:date) 8797ac4c64d110b528c8b1d8e5196d5a02aa4a3f
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 137
-Prop-content-md5: (svn:log) ae0d83ed222603c668159331b23ca53f
-Prop-content-sha1: (svn:log) e10cb48a2f911944a84f662cada6d6bdf5ab27c4
-Prop-content-md5: (svn:author) 4f3bf0db0166b782272f523c85369931
-Prop-content-sha1: (svn:author) 80a1a5ba52100c840c2eea1c417ca133b55e0d8c
-Prop-content-md5: (svn:date) d3eb2d2ffe43557d43f01f99dd23d7ee
-Prop-content-sha1: (svn:date) 3a4b04ed1626b7d0fc91a015d72a834fda180838
 Content-length: 137
 
 K 10
@@ -42,8 +34,6 @@ Node-path: file
 Node-kind: file
 Node-action: add
 Prop-content-length: 36
-Prop-content-md5: (svn:eol-style) 618441d41cce47dbcfd9bed6e5ff64e6
-Prop-content-sha1: (svn:eol-style) 91a07087a57580c557f3a426586f0c2f60ef2af4
 Text-content-length: 13
 Text-content-md5: 65cea5e7a1cc0516de76d7f523f105e6
 Text-content-sha1: ecc6621aa15c7c96d81bb9931b33f0c12c93a1c5
@@ -59,12 +49,6 @@ file-content
 
 Revision-number: 2
 Prop-content-length: 139
-Prop-content-md5: (svn:log) a6bf066b92960e6bb07b2124a9e5730d
-Prop-content-sha1: (svn:log) 9a012ac49dfef81dcbfbef9567f445af0b132022
-Prop-content-md5: (svn:author) 4f3bf0db0166b782272f523c85369931
-Prop-content-sha1: (svn:author) 80a1a5ba52100c840c2eea1c417ca133b55e0d8c
-Prop-content-md5: (svn:date) 11acbf8a3cae675137de95c1232e1783
-Prop-content-sha1: (svn:date) 07c52cfe8bc8cfb117a83838e2bafba514780118
 Content-length: 139
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/descend_into_replace.expected.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/descend_into_replace.expected.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/descend_into_replace.expected.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/descend_into_replace.expected.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: b105e986-03ce-ba4b-b01a-b7a10dd0b7
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 840bd8724067d9034fdc10b5509c38f9
-Prop-content-sha1: (svn:date) 4a8052a22219238cfb5c079e68e9298cd8b685d8
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 133
-Prop-content-md5: (svn:log) c5173d4c9ada1a8e4e97af037067e1ee
-Prop-content-sha1: (svn:log) 79063f24740970c02830fe48a971969ee58fe587
-Prop-content-md5: (svn:author) 262031397020fd8df478ec13b4b096c5
-Prop-content-sha1: (svn:author) 7b37259e149636e3330d530cbf408f2b8c1eda6a
-Prop-content-md5: (svn:date) 64feac049b514242c014f71ac27bb68b
-Prop-content-sha1: (svn:date) a5f1b6bfa3ba00c58a7cfda966715513d6c050d2
 Content-length: 133
 
 K 10
@@ -49,12 +41,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 105
-Prop-content-md5: (svn:log) e63b7fa9fe1cb870c2f5bb12a1bc5d57
-Prop-content-sha1: (svn:log) 3adaf62e0ceb7f46a9e7336e2c587305b3369586
-Prop-content-md5: (svn:author) 262031397020fd8df478ec13b4b096c5
-Prop-content-sha1: (svn:author) 7b37259e149636e3330d530cbf408f2b8c1eda6a
-Prop-content-md5: (svn:date) f011aa8030d9689b21500e10baeed42b
-Prop-content-sha1: (svn:date) 8b2d68b4dc77c4255122d6896da1ca7f5bae6d47
 Content-length: 105
 
 K 10
@@ -73,12 +59,6 @@ PROPS-END
 
 Revision-number: 3
 Prop-content-length: 102
-Prop-content-md5: (svn:log) 9c95319bf274672d6eae7eb97c3dfda5
-Prop-content-sha1: (svn:log) 3f81e91d69a8a61ffbf19297eb0791ad54ce5690
-Prop-content-md5: (svn:author) 262031397020fd8df478ec13b4b096c5
-Prop-content-sha1: (svn:author) 7b37259e149636e3330d530cbf408f2b8c1eda6a
-Prop-content-md5: (svn:date) 7d66d31133b86b67705c69a539842090
-Prop-content-sha1: (svn:date) d6fbd0558bcc220eea1d794975114a75c69703e8
 Content-length: 102
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/dir_prop_change.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/dir_prop_change.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/dir_prop_change.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/dir_prop_change.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: b760f8ea-7608-0410-b9cc-88a00389c8
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 7741d67d3f97aa1b4c6532187f289027
-Prop-content-sha1: (svn:date) 5853b49cbc8fe34fecbb6978a812723570130ab8
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 105
-Prop-content-md5: (svn:log) 0d599f0ec05c3bda8c3b8a68c32a1b47
-Prop-content-sha1: (svn:log) 4cbd040533a2f43fc6691d773d510cda70f4126a
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) a9286b75679e0f198aebed8d81093b8f
-Prop-content-sha1: (svn:date) bf5e60dd41846af4a1938a145e5b2dc72caf7a65
 Content-length: 105
 
 K 10
@@ -43,8 +35,6 @@ Node-path: 
 Node-kind: dir
 Node-action: change
 Prop-content-length: 37
-Prop-content-md5: (svn:ignore) 9eb84090956c484e32cb6c08455a667b
-Prop-content-sha1: (svn:ignore) 003d0450f6f7e6db635a04d23245b68e13365463
 Content-length: 37
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/file-dir-file.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/file-dir-file.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/file-dir-file.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/file-dir-file.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: bd4c07e3-6b11-0410-8af7-f8eca344b6
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) f5dac4babcf6704064f289554907048a
-Prop-content-sha1: (svn:date) bcfed6a359522261d423ef926f94c9c6923e579e
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 105
-Prop-content-md5: (svn:log) c13d88cb4cb02003daedb8a84e5d272a
-Prop-content-sha1: (svn:log) 5eee38381388b6f30efdd5c5c6f067dbf32c0bb3
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 50c9b5475428091781810ef78f122277
-Prop-content-sha1: (svn:date) d28f750443887b4cf7300a6e1360212ca6c6b971
 Content-length: 105
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/modified-in-place.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/modified-in-place.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/modified-in-place.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/modified-in-place.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 103a2b4e-2705-0410-8a58-ca61540ba7
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) e88767e42382220d125be1ed367629cc
-Prop-content-sha1: (svn:date) 80df200b991a20c34d6b4e114b2fc2d98137f51a
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 114
-Prop-content-md5: (svn:log) 527f4d0c1fe36603a9be30f07a163dd2
-Prop-content-sha1: (svn:log) cf4534434e876d77c8cdc66637f027dd7d9d2fde
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 6ec8580a0f6a77bae0ce365f41126e35
-Prop-content-sha1: (svn:date) d8b503d01cfb7391d0a5ecdf712787cdd6643cd3
 Content-length: 114
 
 K 10
@@ -54,12 +46,6 @@ this is a file
 
 Revision-number: 2
 Prop-content-length: 112
-Prop-content-md5: (svn:log) e9da24feb3b462593fc3d94b8cfaef47
-Prop-content-sha1: (svn:log) b041b2bbd7f4ad042af1a8895946aff08c4699c3
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) d6010780d9e5f26194eaa2e4df698201
-Prop-content-sha1: (svn:date) 55a882a65d5c697e3fcf4f7abad507fcb7809e5c
 Content-length: 112
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/no-author.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/no-author.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/no-author.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/no-author.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 55b1b577-cf20-0410-8f4d-bb83706672
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 42c25a2cbf4ab8d750997c7700f0a4a7
-Prop-content-sha1: (svn:date) 1c533b58c1065325ec970502fa4415476333b940
 Content-length: 56
 
 K 8
@@ -16,10 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 77
-Prop-content-md5: (svn:log) d3b07384d113edec49eaa6238ad5ff00
-Prop-content-sha1: (svn:log) f1d2d2f924e986ac86fdf7b36c94bcdf32beec15
-Prop-content-md5: (svn:date) 597b5364abcbac3b321a0162ce3bdd21
-Prop-content-sha1: (svn:date) 21c46980750e710eb3c5a6a14ec3b414226673a5
 Content-length: 77
 
 K 8

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/repo_with_copy_of_root_dir.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/repo_with_copy_of_root_dir.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/repo_with_copy_of_root_dir.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/repo_with_copy_of_root_dir.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 7c1d1c84-647b-4ca5-9d20-057768670f
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) bc143cedbebce0d902d24fb9d2ce804a
-Prop-content-sha1: (svn:date) 5e19fedd13b998c59d39077122eef10689cac166
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 104
-Prop-content-md5: (svn:log) e34a8899ef6468b74f8a1048419ccc8b
-Prop-content-sha1: (svn:log) 573b76b3265bbcfe6a9d2bf0ba54f057f155c921
-Prop-content-md5: (svn:author) 03d2924e0693ecca4b65dd995fdefd38
-Prop-content-sha1: (svn:author) fc0b8cd559ad7a06aa4a0d820aaafd1bef9f52bc
-Prop-content-md5: (svn:date) e5981b20ba4f382a908e2cdcbcb30a41
-Prop-content-sha1: (svn:date) 91d0335a2bb3be894e7404845be77ec6204d8b25
 Content-length: 104
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/revprops.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/revprops.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/revprops.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/revprops.dump Mon Sep  6 20:02:15 2010
@@ -4,10 +4,6 @@ UUID: 728f5e1e-a57c-4dd4-8b4f-ca752f5178
 
 Revision-number: 0
 Prop-content-length: 75
-Prop-content-md5: (foo) cffe6699435a9042ea1d06ddbcd7853a
-Prop-content-sha1: (foo) 1f39e4f188cddd284d64602cba39c580f5ea4335
-Prop-content-md5: (svn:date) 1b69f2412c6c742c9c7244a61fa18e09
-Prop-content-sha1: (svn:date) 566264fef4d43d78fac5966221a636c01cfb8dd8
 Content-length: 75
 
 K 3
@@ -22,14 +18,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 132
-Prop-content-md5: (svn:log) d41d8cd98f00b204e9800998ecf8427e
-Prop-content-sha1: (svn:log) da39a3ee5e6b4b0d3255bfef95601890afd80709
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:mergeinfo) 3b6251fcdc797614cfbc1df34064e3fc
-Prop-content-sha1: (svn:mergeinfo) 545733d85022289004118dd37db90b9df0ffe593
-Prop-content-md5: (svn:date) 65ac64d8cca57d54f7b09789e9e78726
-Prop-content-sha1: (svn:date) e55b50fb4607950d7b8e78092d5771a53bcbdd02
 Content-length: 132
 
 K 10
@@ -74,12 +62,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 124
-Prop-content-md5: (svn:log) c5f0e220fb8ccf25d10ad241dcfd746d
-Prop-content-sha1: (svn:log) ee00102303d31cafd567cb15853e50132446a55c
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) f3d8837082ca5c8c0a62763b33d0837c
-Prop-content-sha1: (svn:date) 3d7b7e4383358001a010e8d217cc71099a73ac6e
 Content-length: 124
 
 K 10
@@ -326,12 +308,6 @@ This is the file 'iota'.
 
 Revision-number: 3
 Prop-content-length: 127
-Prop-content-md5: (svn:log) 5c72cafb682cb5732941ad3b4c35ae59
-Prop-content-sha1: (svn:log) 844692fcd525ed0689e8ee0763a0e4561690b43d
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 0d8a658946f806a5b815299da6efdfce
-Prop-content-sha1: (svn:date) 788b71e9b4b5c67b0b2135673e76dfa57079ef68
 Content-length: 127
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-move-and-modify.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-move-and-modify.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-move-and-modify.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-move-and-modify.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 3f6eb9ce-fbb3-4b51-a522-daa270b3ac
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 926c539862b806f66b9c06493676c629
-Prop-content-sha1: (svn:date) 573810eb9df21b2ed82a1131546acea967158b78
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 115
-Prop-content-md5: (svn:log) 4346997c96e47b2f214ae84906a04fd7
-Prop-content-sha1: (svn:log) 02d631ed0cdf29ef714dbd8294fd7da1cc165bcc
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) e795d61fff7f7c25c20803178a00da2b
-Prop-content-sha1: (svn:date) 407b1db5001e0710228ffa60858350c04807c9e4
 Content-length: 115
 
 K 10
@@ -76,12 +68,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 110
-Prop-content-md5: (svn:log) 2d1e85cf75aeea63b99f623009eb6a4d
-Prop-content-sha1: (svn:log) d9eb7f5f86729ac03c7e0171bb34663a7e1066bb
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 5d345ba3cfacd2b6e13864183f3381bf
-Prop-content-sha1: (svn:date) 3540287f0f83c8ca30f88eef5e5e63c25f2739f9
 Content-length: 110
 
 K 10
@@ -127,12 +113,6 @@ PROPS-END
 
 Revision-number: 3
 Prop-content-length: 106
-Prop-content-md5: (svn:log) 3505962cba11bb7655d611ab8d0dd5f8
-Prop-content-sha1: (svn:log) 53acc723b0cda36d8dbeaef69fdd04ab04286dab
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) b1adc5df86c72122ceb676d656a13e80
-Prop-content-sha1: (svn:date) f22f40deef795db88a82950ee168dfe37ce4944b
 Content-length: 106
 
 K 10
@@ -165,12 +145,6 @@ content for file.txt
 
 Revision-number: 4
 Prop-content-length: 117
-Prop-content-md5: (svn:log) 416d5850e22948fb77b09ae08f226c48
-Prop-content-sha1: (svn:log) a238f2952e51a0f67ed790563b0296cc19b4060d
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 7c24e8c449e29012735cadd320621501
-Prop-content-sha1: (svn:date) cb6ae843cf2ba3e8c173223ab7dd0707a734bcaf
 Content-length: 117
 
 K 10
@@ -203,12 +177,6 @@ content for file2.txt
 
 Revision-number: 5
 Prop-content-length: 127
-Prop-content-md5: (svn:log) dbbba5ba8b0981e95bd3b123e90d188c
-Prop-content-sha1: (svn:log) 4cfa881024df0b37cf93f35e317adf995bcc8aa8
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) ac1adc3a8e8afd515d9f95e8d95093dc
-Prop-content-sha1: (svn:date) 92f8c93d3494b34e3a0daccfe466153f4bc4f665
 Content-length: 127
 
 K 10
@@ -231,8 +199,6 @@ Node-action: add
 Node-copyfrom-rev: 4
 Node-copyfrom-path: project1/branches
 Prop-content-length: 34
-Prop-content-md5: (svn:mergeinfo) d41d8cd98f00b204e9800998ecf8427e
-Prop-content-sha1: (svn:mergeinfo) da39a3ee5e6b4b0d3255bfef95601890afd80709
 Content-length: 34
 
 K 13
@@ -260,8 +226,6 @@ Node-action: add
 Node-copyfrom-rev: 4
 Node-copyfrom-path: project1/tags
 Prop-content-length: 34
-Prop-content-md5: (svn:mergeinfo) d41d8cd98f00b204e9800998ecf8427e
-Prop-content-sha1: (svn:mergeinfo) da39a3ee5e6b4b0d3255bfef95601890afd80709
 Content-length: 34
 
 K 13
@@ -277,8 +241,6 @@ Node-action: add
 Node-copyfrom-rev: 4
 Node-copyfrom-path: project1/trunk
 Prop-content-length: 34
-Prop-content-md5: (svn:mergeinfo) d41d8cd98f00b204e9800998ecf8427e
-Prop-content-sha1: (svn:mergeinfo) da39a3ee5e6b4b0d3255bfef95601890afd80709
 Content-length: 34
 
 K 13
@@ -304,12 +266,6 @@ extra line of test
 
 Revision-number: 6
 Prop-content-length: 115
-Prop-content-md5: (svn:log) 2ce727e28e0912e75217378c8b321cf9
-Prop-content-sha1: (svn:log) 5b471ab3caf6219f567c6f25cd941bc8bdd0327c
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) dfda2ba5f85be4d81643a4f06862f139
-Prop-content-sha1: (svn:date) f48493f090bb9345229cfea45ae68e39c5831481
 Content-length: 115
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-A-changes.expected.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-A-changes.expected.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-A-changes.expected.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-A-changes.expected.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 728f5e1e-a57c-4dd4-8b4f-ca752f5178
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 1b69f2412c6c742c9c7244a61fa18e09
-Prop-content-sha1: (svn:date) 566264fef4d43d78fac5966221a636c01cfb8dd8
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 97
-Prop-content-md5: (svn:log) d41d8cd98f00b204e9800998ecf8427e
-Prop-content-sha1: (svn:log) da39a3ee5e6b4b0d3255bfef95601890afd80709
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 65ac64d8cca57d54f7b09789e9e78726
-Prop-content-sha1: (svn:date) e55b50fb4607950d7b8e78092d5771a53bcbdd02
 Content-length: 97
 
 K 10
@@ -49,12 +41,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 124
-Prop-content-md5: (svn:log) c5f0e220fb8ccf25d10ad241dcfd746d
-Prop-content-sha1: (svn:log) ee00102303d31cafd567cb15853e50132446a55c
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) f3d8837082ca5c8c0a62763b33d0837c
-Prop-content-sha1: (svn:date) 3d7b7e4383358001a010e8d217cc71099a73ac6e
 Content-length: 124
 
 K 10
@@ -288,12 +274,6 @@ This is the file 'A/mu'.
 
 Revision-number: 3
 Prop-content-length: 127
-Prop-content-md5: (svn:log) 5c72cafb682cb5732941ad3b4c35ae59
-Prop-content-sha1: (svn:log) 844692fcd525ed0689e8ee0763a0e4561690b43d
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 0d8a658946f806a5b815299da6efdfce
-Prop-content-sha1: (svn:date) 788b71e9b4b5c67b0b2135673e76dfa57079ef68
 Content-length: 127
 
 K 10
@@ -324,12 +304,6 @@ Added extra line.
 
 Revision-number: 4
 Prop-content-length: 128
-Prop-content-md5: (svn:log) bbb947527249743ceab8254b3dacd4cc
-Prop-content-sha1: (svn:log) 70ddf3a94578a1164e79b6f1d274d0db8acde01e
-Prop-content-md5: (svn:author) 5176e28ac739be42420688254587a92a
-Prop-content-sha1: (svn:author) 2a55f6a4d5f5d2ac3b08bf7eb6bc2bde2b1f9ce6
-Prop-content-md5: (svn:date) 9fe701bb0e59475780bfe00022627f98
-Prop-content-sha1: (svn:date) 589370c75026addcdd5c11772aa206bb9a6d389e
 Content-length: 128
 
 K 10
@@ -350,8 +324,6 @@ Node-path: trunk/A
 Node-kind: dir
 Node-action: change
 Prop-content-length: 26
-Prop-content-md5: (foo) 37b51d194a7513e45b56f6524f2d51f2
-Prop-content-sha1: (foo) 62cdb7020ff920e5aa642c3d4066950dd1f01f4d
 Content-length: 26
 
 K 3
@@ -363,12 +335,6 @@ PROPS-END
 
 Revision-number: 5
 Prop-content-length: 116
-Prop-content-md5: (svn:log) 10311450610213e83fa9b7b6dd9148b8
-Prop-content-sha1: (svn:log) e06b304aa4c8ffe33ea44ec10023a900fc90a836
-Prop-content-md5: (svn:author) 5176e28ac739be42420688254587a92a
-Prop-content-sha1: (svn:author) 2a55f6a4d5f5d2ac3b08bf7eb6bc2bde2b1f9ce6
-Prop-content-md5: (svn:date) ea204d8057e4c132b701417012b29589
-Prop-content-sha1: (svn:date) 3b183cd08efe14a34541311ff10d8df09a448522
 Content-length: 116
 
 K 10
@@ -391,12 +357,6 @@ Node-action: delete
 
 Revision-number: 6
 Prop-content-length: 116
-Prop-content-md5: (svn:log) 0d914d8d200063955513f49127bf1159
-Prop-content-sha1: (svn:log) 61301c02fe66da8307a029c0830ecdca617fe449
-Prop-content-md5: (svn:author) 5176e28ac739be42420688254587a92a
-Prop-content-sha1: (svn:author) 2a55f6a4d5f5d2ac3b08bf7eb6bc2bde2b1f9ce6
-Prop-content-md5: (svn:date) 008dd7b8ca0b8761f784c677d1a8c3e3
-Prop-content-sha1: (svn:date) d7ab15a75694a73885b1707b7d1652bb831ec5e8
 Content-length: 116
 
 K 10
@@ -534,12 +494,6 @@ This is the file 'A/D/gamma'.
 
 Revision-number: 7
 Prop-content-length: 125
-Prop-content-md5: (svn:log) f6d9f682d5011607580ee4462eff7156
-Prop-content-sha1: (svn:log) ce37d93f790eb3b1670b69e4be410c510ef3de84
-Prop-content-md5: (svn:author) 5176e28ac739be42420688254587a92a
-Prop-content-sha1: (svn:author) 2a55f6a4d5f5d2ac3b08bf7eb6bc2bde2b1f9ce6
-Prop-content-md5: (svn:date) e83ec98db8ea6e40028fa35ecbfccb12
-Prop-content-sha1: (svn:date) 474deb2c396cec8418307577caa3a7339f17ea2e
 Content-length: 125
 
 K 10
@@ -560,8 +514,6 @@ Node-path: trunk
 Node-kind: dir
 Node-action: change
 Prop-content-length: 31
-Prop-content-md5: (propon) 8d0411b338c83cd8cd8ad9d9db127101
-Prop-content-sha1: (propon) 488784591515bd4cdaa016be4ec9b172dc4e7caf
 Content-length: 31
 
 K 6

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-only.expected.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-only.expected.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-only.expected.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/svnsync-trunk-only.expected.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 728f5e1e-a57c-4dd4-8b4f-ca752f5178
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 1b69f2412c6c742c9c7244a61fa18e09
-Prop-content-sha1: (svn:date) 566264fef4d43d78fac5966221a636c01cfb8dd8
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 97
-Prop-content-md5: (svn:log) d41d8cd98f00b204e9800998ecf8427e
-Prop-content-sha1: (svn:log) da39a3ee5e6b4b0d3255bfef95601890afd80709
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 65ac64d8cca57d54f7b09789e9e78726
-Prop-content-sha1: (svn:date) e55b50fb4607950d7b8e78092d5771a53bcbdd02
 Content-length: 97
 
 K 10
@@ -49,12 +41,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 124
-Prop-content-md5: (svn:log) c5f0e220fb8ccf25d10ad241dcfd746d
-Prop-content-sha1: (svn:log) ee00102303d31cafd567cb15853e50132446a55c
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) f3d8837082ca5c8c0a62763b33d0837c
-Prop-content-sha1: (svn:date) 3d7b7e4383358001a010e8d217cc71099a73ac6e
 Content-length: 124
 
 K 10
@@ -301,12 +287,6 @@ This is the file 'iota'.
 
 Revision-number: 3
 Prop-content-length: 127
-Prop-content-md5: (svn:log) 5c72cafb682cb5732941ad3b4c35ae59
-Prop-content-sha1: (svn:log) 844692fcd525ed0689e8ee0763a0e4561690b43d
-Prop-content-md5: (svn:author) e132f7d4c73fdb84ba5f84bcfdcf90b1
-Prop-content-sha1: (svn:author) 037aa8992b1094819e6c95659c91826248822e75
-Prop-content-md5: (svn:date) 0d8a658946f806a5b815299da6efdfce
-Prop-content-sha1: (svn:date) 788b71e9b4b5c67b0b2135673e76dfa57079ef68
 Content-length: 127
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-empty-trunk.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-empty-trunk.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-empty-trunk.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-empty-trunk.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: c38a9451-c504-0410-b613-a343b2d5fd
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) d3e68c204824c9d773669f1589ee632e
-Prop-content-sha1: (svn:date) b013b81522077aea7d8473b0c5ac140021f11059
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 105
-Prop-content-md5: (svn:log) a0f848942ce863cf53c0fa6cc684007d
-Prop-content-sha1: (svn:log) 80437a44a661d141174209119d54125a59a64b2a
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 56078dd7c8ee30deab799602d25a2794
-Prop-content-sha1: (svn:date) 815da5e8791ae8d419e0c2c83f139a5fe6a3e001
 Content-length: 105
 
 K 10
@@ -58,12 +50,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 106
-Prop-content-md5: (svn:log) 71144bec603905f49f4253f77fd5a9ef
-Prop-content-sha1: (svn:log) ed2db88fb56683d3e2b1e2163408a0e907f06fa8
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 862458ae04a246c9891d0b8a1d7d9644
-Prop-content-sha1: (svn:date) ab480fd6e98659ca9ce03f3eff7213ca303f8f29
 Content-length: 106
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-dir.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-dir.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-dir.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-dir.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 20f4d640-c604-0410-95c8-f4ec7efce8
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) a046659177c52c6746917821511f9318
-Prop-content-sha1: (svn:date) 38fd1e0ee328137f9d719300004dca3292d143b1
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 105
-Prop-content-md5: (svn:log) c13d88cb4cb02003daedb8a84e5d272a
-Prop-content-sha1: (svn:log) 5eee38381388b6f30efdd5c5c6f067dbf32c0bb3
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) d92941fc4884b1a17572b249445b4c23
-Prop-content-sha1: (svn:date) 8f38fcb744bd1143533f08521db241cb54501bd1
 Content-length: 105
 
 K 10
@@ -67,12 +59,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 111
-Prop-content-md5: (svn:log) 98fa34b678d0bc616dc453ff71453ae5
-Prop-content-sha1: (svn:log) a3b3d00c74cb34cca8ce31435943bee58bf3b6e1
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 9c81fd8fde02dc15ec88a8680dc74d26
-Prop-content-sha1: (svn:date) 2d25c8fb2554c0a0560109ad573db6eb26acb582
 Content-length: 111
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 9bc56067-ff04-0410-83a8-bf961f5bc0
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 06156cb677da23ca75ca86ca4a14fb8f
-Prop-content-sha1: (svn:date) a7f2bcd4666a392a9aa9d1c739d490d22ff50bfc
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 115
-Prop-content-md5: (svn:log) 4ab9e582f3170b1da8428f34f37acf20
-Prop-content-sha1: (svn:log) 43a0bac46b9fa5d856ab146334082f1edd13134e
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) ed886aa69961cfa6adb3b936ffc80889
-Prop-content-sha1: (svn:date) 12760e904f72cb239eea36c02488f94a65f5af3a
 Content-length: 115
 
 K 10
@@ -67,12 +59,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 111
-Prop-content-md5: (svn:log) b1f4cf34cf2348c4d30bcefce58e46e7
-Prop-content-sha1: (svn:log) 39b4de55d6c748d9adb1e13c09daf81bf2b4e89d
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 1850831dfb94f96c873dfab34c9f9ed0
-Prop-content-sha1: (svn:date) 768a02028e9b7f7d70422366e9e18391db9aeb78
 Content-length: 111
 
 K 10
@@ -104,12 +90,6 @@ this is a file.
 
 Revision-number: 3
 Prop-content-length: 113
-Prop-content-md5: (svn:log) 0aaf4edeabbca22a01ab87cbb4c54543
-Prop-content-sha1: (svn:log) f42b93ee6a78447b18229c616745a5f965167383
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 1872a9c3ebf036b1b88cd553bf71d9b1
-Prop-content-sha1: (svn:date) 36cf7ac0d23cd15f8e4983192a370d545e293f56
 Content-length: 113
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file2.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file2.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file2.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-trunk-with-file2.dump Mon Sep  6 20:02:15 2010
@@ -1,27 +1,19 @@
 SVN-fs-dump-format-version: 2
 
-UUID: 9bc56067-ff04-0410-83a8-bf961f5bc06a
+UUID: 47c84ee7-0005-0410-843c-81123ebdd4be
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 06156cb677da23ca75ca86ca4a14fb8f
-Prop-content-sha1: (svn:date) a7f2bcd4666a392a9aa9d1c739d490d22ff50bfc
 Content-length: 56
 
 K 8
 svn:date
 V 27
-2005-11-07T20:21:44.409773Z
+2005-11-07T22:09:05.681726Z
 PROPS-END
 
 Revision-number: 1
 Prop-content-length: 115
-Prop-content-md5: (svn:log) 4ab9e582f3170b1da8428f34f37acf20
-Prop-content-sha1: (svn:log) 43a0bac46b9fa5d856ab146334082f1edd13134e
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) ed886aa69961cfa6adb3b936ffc80889
-Prop-content-sha1: (svn:date) 12760e904f72cb239eea36c02488f94a65f5af3a
 Content-length: 115
 
 K 10
@@ -31,7 +23,7 @@ rooneg
 K 8
 svn:date
 V 27
-2005-11-07T20:22:08.601650Z
+2005-11-07T22:09:30.282710Z
 K 7
 svn:log
 V 14
@@ -67,12 +59,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 111
-Prop-content-md5: (svn:log) b1f4cf34cf2348c4d30bcefce58e46e7
-Prop-content-sha1: (svn:log) 39b4de55d6c748d9adb1e13c09daf81bf2b4e89d
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 1850831dfb94f96c873dfab34c9f9ed0
-Prop-content-sha1: (svn:date) 768a02028e9b7f7d70422366e9e18391db9aeb78
 Content-length: 111
 
 K 10
@@ -82,7 +68,7 @@ rooneg
 K 8
 svn:date
 V 27
-2005-11-07T20:22:25.607033Z
+2005-11-07T22:09:44.146564Z
 K 7
 svn:log
 V 10
@@ -94,22 +80,16 @@ Node-kind: file
 Node-action: add
 Prop-content-length: 10
 Text-content-length: 16
-Text-content-md5: 0bebeeefa6853d064099b54a81a627e8
-Text-content-sha1: b78087338d3daf51e667056c78fd8089bb51d5ec
+Text-content-md5: 98475036dc73d318982805bf4b16e8b2
+Text-content-sha1: d7dff2b1ef48b9c20c23d7b3a08b557957cec3c9
 Content-length: 26
 
 PROPS-END
-this is a file.
+This is a file.
 
 
 Revision-number: 3
 Prop-content-length: 113
-Prop-content-md5: (svn:log) 0aaf4edeabbca22a01ab87cbb4c54543
-Prop-content-sha1: (svn:log) f42b93ee6a78447b18229c616745a5f965167383
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 1872a9c3ebf036b1b88cd553bf71d9b1
-Prop-content-sha1: (svn:date) 36cf7ac0d23cd15f8e4983192a370d545e293f56
 Content-length: 113
 
 K 10
@@ -119,7 +99,7 @@ rooneg
 K 8
 svn:date
 V 27
-2005-11-07T20:22:46.490796Z
+2005-11-07T22:10:03.753668Z
 K 7
 svn:log
 V 12
@@ -127,19 +107,10 @@ make a tag.
 
 PROPS-END
 
-Node-path: tags/a-tag-with-file-contents
+Node-path: tags/a-tag
 Node-kind: dir
 Node-action: add
-Node-copyfrom-rev: 1
-Node-copyfrom-path: trunk
-
-
-Node-path: tags/a-tag-with-file-contents/foo.txt
-Node-kind: file
-Node-action: add
 Node-copyfrom-rev: 2
-Node-copyfrom-path: trunk/foo.txt
-Text-copy-source-md5: 0bebeeefa6853d064099b54a81a627e8
-Text-copy-source-sha1: b78087338d3daf51e667056c78fd8089bb51d5ec
+Node-copyfrom-path: trunk
 
 

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-with-modified-file.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-with-modified-file.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-with-modified-file.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/tag-with-modified-file.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: a5ac5a0e-0105-0410-a82a-edd0b5a7eb
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 3f9d3061b50ad8d8a335682e491af0da
-Prop-content-sha1: (svn:date) 0043f7b3ac54b9e6d8e117afa3fd1c68cfd1fa7f
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 115
-Prop-content-md5: (svn:log) 4ab9e582f3170b1da8428f34f37acf20
-Prop-content-sha1: (svn:log) 43a0bac46b9fa5d856ab146334082f1edd13134e
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) fdb200dfc19d911f3b76b1a6c7b1a9ea
-Prop-content-sha1: (svn:date) d48ff8f98d7d4f4ea09001bebfc587594a42322f
 Content-length: 115
 
 K 10
@@ -67,12 +59,6 @@ PROPS-END
 
 Revision-number: 2
 Prop-content-length: 112
-Prop-content-md5: (svn:log) 8977446179f59b78ded2b47fdfae2030
-Prop-content-sha1: (svn:log) 4eda8ceeab6d9a0c88b180462088b33702c1b601
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) ae03b06fa8f3a5eda080fd3da5fca4d9
-Prop-content-sha1: (svn:date) 7caaa073b292e167331993804eb9757885932a5e
 Content-length: 112
 
 K 10
@@ -105,12 +91,6 @@ a file.
 
 Revision-number: 3
 Prop-content-length: 126
-Prop-content-md5: (svn:log) 06ef13f1a8006557c7b6d46dee3eb66c
-Prop-content-sha1: (svn:log) 2484bc04cccf795d0cdc5d7ee843e747f733e2d7
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) b821684085862165543e9747af5c4a6f
-Prop-content-sha1: (svn:date) a05bfbd3e1370b85fe541ccf1bc0c97540a12188
 Content-length: 126
 
 K 10

Modified: subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/url-encoding-bug.dump
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/url-encoding-bug.dump?rev=993141&r1=993140&r2=993141&view=diff
==============================================================================
--- subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/url-encoding-bug.dump (original)
+++ subversion/branches/performance/subversion/tests/cmdline/svnsync_tests_data/url-encoding-bug.dump Mon Sep  6 20:02:15 2010
@@ -4,8 +4,6 @@ UUID: 182b6a41-8020-0410-bcb2-35c7cd5e7a
 
 Revision-number: 0
 Prop-content-length: 56
-Prop-content-md5: (svn:date) 9337bf813cce627b7f4985d83fed703e
-Prop-content-sha1: (svn:date) d3d6e289695638e1ab0b3d74365631f6dad2b05a
 Content-length: 56
 
 K 8
@@ -16,12 +14,6 @@ PROPS-END
 
 Revision-number: 1
 Prop-content-length: 101
-Prop-content-md5: (svn:log) c0cb5f0fcf239ab3d9c1fcd31fff1efc
-Prop-content-sha1: (svn:log) 5c10b5b2cd673a0616d529aa5234b12ee7153808
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) 9094b7f0719f04994da0492ece9bc403
-Prop-content-sha1: (svn:date) 3077b24c4f2074ea43fd93de1a1ff175a82bd75a
 Content-length: 101
 
 K 10
@@ -53,12 +45,6 @@ blah blah blah
 
 Revision-number: 2
 Prop-content-length: 101
-Prop-content-md5: (svn:log) c0cb5f0fcf239ab3d9c1fcd31fff1efc
-Prop-content-sha1: (svn:log) 5c10b5b2cd673a0616d529aa5234b12ee7153808
-Prop-content-md5: (svn:author) c9bd66513549086361ea008b319307f8
-Prop-content-sha1: (svn:author) f9752bcda9e6e513d24f99a02b46cb539a5f63b9
-Prop-content-md5: (svn:date) c0017ad6b8c18b45cc912f36bba3fcba
-Prop-content-sha1: (svn:date) fd8afd87628eb5d8bb40a089085d63a7a277b907
 Content-length: 101
 
 K 10
@@ -90,12 +76,6 @@ Node-action: delete
 
 Revision-number: 3
 Prop-content-length: 102
-Prop-content-md5: (svn:log) c0cb5f0fcf239ab3d9c1fcd31fff1efc
-Prop-content-sha1: (svn:log) 5c10b5b2cd673a0616d529aa5234b12ee7153808
-Prop-content-md5: (svn:author) 5176e28ac739be42420688254587a92a
-Prop-content-sha1: (svn:author) 2a55f6a4d5f5d2ac3b08bf7eb6bc2bde2b1f9ce6
-Prop-content-md5: (svn:date) f4533e34ea1c7425ae4f67f72af1c2a3
-Prop-content-sha1: (svn:date) 79f998bc0125cc6fda85a357be6697ee00224215
 Content-length: 102
 
 K 10