Message283032
For python test command line arguments, -j is not allowed together with -T/-l (don't know why):
[cpython]$ ./python -m test -j4 -T
usage: python -m test [options] [test_name1 [test_name2 ...]]
python path/to/Lib/test/regrtest.py [options] [test_name1 [test_name2 ...]]
regrtest.py: error: -T and -j don't go together!
Pass -h or --help for complete help.
[cpython]$ ./python -m test -j4 -l
usage: python -m test [options] [test_name1 [test_name2 ...]]
python path/to/Lib/test/regrtest.py [options] [test_name1 [test_name2 ...]]
regrtest.py: error: -l and -j don't go together!
Pass -h or --help for complete help.
But -j0 which also spawns multiple progresses fails the check. |
|
Date |
User |
Action |
Args |
2016-12-12 18:15:13 | xiang.zhang | set | recipients:
+ xiang.zhang |
2016-12-12 18:15:13 | xiang.zhang | set | messageid: <1481566513.26.0.47817718709.issue28950@psf.upfronthosting.co.za> |
2016-12-12 18:15:13 | xiang.zhang | link | issue28950 messages |
2016-12-12 18:15:13 | xiang.zhang | create | |
|