tests: add hack to avoid problem with graphlog in unified tests stable
authorMatt Mackall <mpm@selenic.com>
Mon, 20 Sep 2010 14:36:36 -0500
branchstable
changeset 795 234c4314c6a4
parent 793 9cc90e2c826f
child 796 13bba4066f90
child 797 f0d8ac85ca21
tests: add hack to avoid problem with graphlog in unified tests [ original upstream message ]
tests/run-tests.py
--- a/tests/run-tests.py	Thu Sep 16 17:51:32 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