xavierb / rpms / pysvn

Forked from rpms/pysvn 4 years ago
Clone
Blob Blame History Raw
Index: Extension/Tests/benchmark_diff.py
===================================================================
--- Extension/Tests/benchmark_diff.py	(revision 1369)
+++ Extension/Tests/benchmark_diff.py	(working copy)
@@ -1,6 +1,6 @@
 '''
  ====================================================================
- Copyright (c) 2005-2011 Barry A Scott.  All rights reserved.
+ Copyright (c) 2005-2009 Barry A Scott.  All rights reserved.
 
  This software is licensed as described in the file LICENSE.txt,
  which you should have received as part of this distribution.
@@ -78,9 +78,7 @@
         dateUnixLs2_re = re.compile(r'[JFMASOND][a-z][a-z]  \d\d\d\d')
         uuid_re = re.compile(r'[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}')
         checksum_re = re.compile(r'[0-9a-z]{32}')
-        tmpSvnFile_re = re.compile(r'/.svn/tmp/tempfile.\d+.tmp|/.svn/tmp/svn-[a-zA-Z0-9]+')
 
-
         self.replacement_list = [
                         (dateAlphaNumeric_re,          '<alpha-date-and-time>'),
                         (dateNumeric_re,               '<numeric-date-and-time>'),
@@ -88,9 +86,9 @@
                         (checksum_re,                  '<checksum>'),
                         (dateUnixLs1_re,               '<ls-date-and-time>'),
                         (dateUnixLs2_re,               '<ls-date-and-time>'),
-                        (tmpSvnFile_re,                '/.svn/tmp/<svn-tempfile>'),
                         ]
 
+
         if self.workdir:
             workdir_re1 = LiteralCaseBlindSearch( self.workdir )
             workdir_re2 = LiteralCaseBlindSearch( os.path.realpath( self.workdir ) )