# HG changeset patch # User Augie Fackler # Date 1505794132 14400 # Node ID 278af542777368294c584fa13214fae78d6e8b75 # Parent 25fce08b36c8b14c9742be9389940667fab1fc23 tests: convert bisect support regex to binary The bisection feature of run-tests still fails tests with this because bisect itself doesn't work yet. We'll get there. diff -r 25fce08b36c8 -r 278af5427773 tests/run-tests.py --- a/tests/run-tests.py Tue Sep 19 00:08:12 2017 -0400 +++ b/tests/run-tests.py Tue Sep 19 00:08:52 2017 -0400 @@ -2113,9 +2113,9 @@ data = sub.stdout.read() sub.wait() m = re.search( - (r'\nThe first (?Pbad|good) revision ' - r'is:\nchangeset: +\d+:(?P[a-f0-9]+)\n.*\n' - r'summary: +(?P[^\n]+)\n'), + (br'\nThe first (?Pbad|good) revision ' + br'is:\nchangeset: +\d+:(?P[a-f0-9]+)\n.*\n' + br'summary: +(?P[^\n]+)\n'), data, (re.MULTILINE | re.DOTALL)) if m is None: self.stream.writeln(