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 |
|
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