Changeset 9cd44ba for tests/pybin
- Timestamp:
- Mar 3, 2022, 2:43:18 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- d529ad0
- Parents:
- d9d8b9f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
rd9d8b9f r9cd44ba 290 290 ################################################################################ 291 291 # count number of jobs to create 292 def job_count( options , tests):292 def job_count( options ): 293 293 # check if the user already passed in a number of jobs for multi-threading 294 294 if not options.jobs: … … 317 317 sys.exit(1) 318 318 319 return min( options.jobs, len(tests) ), force319 return options.jobs, force 320 320 321 321 # enable core dumps for all the test children
Note: See TracChangeset
for help on using the changeset viewer.