##// END OF EJS Templates
run-tests: test each line matching function on its own...
Simon Heimberg -
r20272:9e3eb009 default
parent child Browse files
Show More
@@ -634,9 +634,10 b' def linematch(el, l):'
634 el = el[:-7].decode('string-escape') + '\n'
634 el = el[:-7].decode('string-escape') + '\n'
635 if el == l or os.name == 'nt' and el[:-1] + '\r\n' == l:
635 if el == l or os.name == 'nt' and el[:-1] + '\r\n' == l:
636 return True
636 return True
637 if (el.endswith(" (re)\n") and rematch(el[:-6], l) or
637 if el.endswith(" (re)\n"):
638 el.endswith(" (glob)\n") and globmatch(el[:-8], l)):
638 return rematch(el[:-6], l)
639 return True
639 if el.endswith(" (glob)\n"):
640 return globmatch(el[:-8], l)
640 return False
641 return False
641
642
642 def tsttest(test, wd, options, replacements, env):
643 def tsttest(test, wd, options, replacements, env):
General Comments 0
You need to be logged in to leave comments. Login now