Changes in tests/test.py [e85a72b8:195d1d8]
- File:
-
- 1 edited
-
tests/test.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/test.py
re85a72b8 r195d1d8 23 23 24 24 def match_test(path): 25 match = re.search( "^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$"% settings.SRCDIR, path)25 match = re.search(r'^%s\/([\w\/\-_]*).expect\/([\w\-_\+]+)(\.[\w\-_]+)?\.txt$' % settings.SRCDIR, path) 26 26 if match : 27 27 test = Test() … … 359 359 sys.exit(1) 360 360 361 print(' '.join(re.findall( '([^\s]+\.cfa)', out)), end=' ')361 print(' '.join(re.findall(r'([^\s]+\.cfa)', out)), end=' ') 362 362 363 363 print('')
Note:
See TracChangeset
for help on using the changeset viewer.