Changes in tests/pybin/tools.py [f58522b0:195d1d8]
- File:
-
- 1 edited
-
tests/pybin/tools.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
rf58522b0 r195d1d8 120 120 return (False, "'file EXPECT' failed with code {} '{}'".format(code, err)) 121 121 122 match = re.search( ".*: (.*)", out)122 match = re.search(r".*: (.*)", out) 123 123 124 124 if not match: … … 306 306 sys.exit(1) 307 307 308 re_jobs = re.search( "--jobserver-(auth|fds)", out)308 re_jobs = re.search(r"--jobserver-(auth|fds)", out) 309 309 if not re_jobs: 310 310 print("ERROR: cannot find Makefile jobserver version", file=sys.stderr)
Note:
See TracChangeset
for help on using the changeset viewer.