Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [lit] Use better name for "test in parallel" concept | Julian Lettner | 2019-10-04 | 1 | -1/+1 |
| | | | | | | | | | | | | In the past, lit used threads to run tests in parallel. Today we use `multiprocessing.Pool`, which uses processes. Let's stay more abstract and use "worker" everywhere. Reviewed By: rnk Differential Revision: https://reviews.llvm.org/D68475 llvm-svn: 373794 | ||||
* | [lit] Allow setting parallelism groups to None | Julian Lettner | 2019-02-26 | 1 | -0/+21 |
Check that we do not crash if a parallelism group is explicitly set to None. Permits usage of the following pattern. [lit.common.cfg] lit_config.parallelism_groups['my_group'] = None if <condition>: lit_config.parallelism_groups['my_group'] = 3 [project/lit.cfg] config.parallelism_group = 'my_group' Reviewers: rnk Differential Revision: https://reviews.llvm.org/D58305 llvm-svn: 354912 |