Changes in tests/test.py [f58522b0:0fc91db1]
- File:
-
- 1 edited
-
tests/test.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/test.py
rf58522b0 r0fc91db1 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("^%s\/([\w\/\-_]*).expect\/([\w\-_]+)(\.[\w\-_]+)?\.txt$" % settings.SRCDIR, path) 26 26 if match : 27 27 test = Test() … … 190 190 if settings.dry_run or is_exe(exe_file): 191 191 # run test 192 retcode, _, _ = sh(exe_file, output_file=out_file, input_file=in_file, timeout=True , nice=True)192 retcode, _, _ = sh(exe_file, output_file=out_file, input_file=in_file, timeout=True) 193 193 else : 194 194 # simply cat the result into the output
Note:
See TracChangeset
for help on using the changeset viewer.