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, ''), (dateNumeric_re, ''), @@ -88,9 +86,9 @@ (checksum_re, ''), (dateUnixLs1_re, ''), (dateUnixLs2_re, ''), - (tmpSvnFile_re, '/.svn/tmp/'), ] + if self.workdir: workdir_re1 = LiteralCaseBlindSearch( self.workdir ) workdir_re2 = LiteralCaseBlindSearch( os.path.realpath( self.workdir ) )