diff tests/run-tests.py @ 12338:b016fc1c0862

tests: add hack to avoid problem with graphlog in unified tests
author Matt Mackall <mpm@selenic.com>
date Mon, 20 Sep 2010 14:36:36 -0500
parents 4134686b83e1
children 58885f00b998
line wrap: on
line diff
--- a/tests/run-tests.py	Mon Sep 20 14:32:21 2010 -0500
+++ b/tests/run-tests.py	Mon Sep 20 14:36:36 2010 -0500
@@ -503,6 +503,9 @@
 
     def rematch(el, l):
         try:
+            # hack to deal with graphlog, which looks like bogus regexes
+            if el.startswith('|'):
+                el = '\\' + el
             return re.match(el, l)
         except re.error:
             # el is an invalid regex