comparison tests/common-pattern.py @ 53031:e705fec4a03f stable

branching: merging with 7.0 changes Since 6.9.3 was made after 7.0rc0 we need to deal with more branching than usual.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 05 Mar 2025 23:02:19 +0100
parents c21c9ec35c5d
children
comparison
equal deleted inserted replaced
53030:74439d1cbeba 53031:e705fec4a03f
120 lambda m: (br'%s total queries in *.????s (glob)' % m.group(1)), 120 lambda m: (br'%s total queries in *.????s (glob)' % m.group(1)),
121 ), 121 ),
122 ( 122 (
123 br'\belapsed time: \d+.\d{6} seconds\b', 123 br'\belapsed time: \d+.\d{6} seconds\b',
124 br'elapsed time: *.?????? seconds (glob)', 124 br'elapsed time: *.?????? seconds (glob)',
125 ),
126 # delta find debug time
127 (
128 br'(DBG-DELTAS: .* - )duration=\d+\.\d{6}\b',
129 lambda m: br'%sduration=*.?????? (glob)' % m.group(1),
130 ),
131 (
132 br'DBG-DELTAS-SEARCH: delta-search-time=\d+.\d{6}',
133 br'DBG-DELTAS-SEARCH: delta-search-time=* (glob)',
125 ), 134 ),
126 ] 135 ]
127 136
128 # Various platform error strings, keyed on a common replacement string 137 # Various platform error strings, keyed on a common replacement string
129 _errors = { 138 _errors = {