Changeset 5baa33c for tests/pybin
- Timestamp:
 - Mar 8, 2022, 6:30:59 PM (4 years ago)
 - Branches:
 - ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
 - Children:
 - cc9b520
 - Parents:
 - ef56087
 - File:
 - 
      
- 1 edited
 
- 
          
  tests/pybin/tools.py (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
tests/pybin/tools.py
ref56087 r5baa33c 371 371 # do we have limited parallelism? 372 372 if exists_fds : 373 print("limited {}".format(exists_fds))374 373 try: 375 374 rfd, wfd = tuple(exists_fds.split('=')[1].split(',')) … … 377 376 print("ERROR: jobserver has unrecoginzable format, was '{}'".format(exists_fds), file=sys.stderr) 378 377 sys.exit(1) 379 380 print("{} {}".format(rfd, wfd))381 378 382 379 # read the token pipe to count number of available tokens and restore the pipe … … 404 401 options.jobs = 1 405 402 406 # keep all flags make passed along 407 flags = make_flags403 # keep all flags make passed along, except the weird 'w' which is about subdirectories 404 flags = [f for f in make_flags if f != 'w'] 408 405 409 406 # Arguments are calling the shots, fake the top level make … … 429 426 # Make sure we call make as expected 430 427 settings.update_make_cmd( flags ) 431 print(flags)432 print(os.environ.get('MAKEFLAGS'))433 428 434 429 # return the job count  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.