Changes in / [1dbbef6:86601a5]
- File:
-
- 1 edited
-
tests/pybin/tools.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
r1dbbef6 r86601a5 46 46 47 47 print(cmd) 48 return 0, None 48 return 0, None, None 49 49 50 50 with contextlib.ExitStack() as onexit: … … 291 291 ################################################################################ 292 292 def jobserver_version(): 293 make_ret, out, err = sh('make', '.test_makeflags', '-j2', output_file=subprocess.PIPE, error=subprocess.PIPE)293 make_ret, out, err = sh('make', '.test_makeflags', '-j2', ignore_dry_run = True, output_file=subprocess.PIPE, error=subprocess.PIPE) 294 294 if make_ret != 0: 295 295 print("ERROR: cannot find Makefile jobserver version", file=sys.stderr)
Note:
See TracChangeset
for help on using the changeset viewer.