Message283032
| Author |
xiang.zhang |
| Recipients |
xiang.zhang |
| Date |
2016年12月12日.18:15:13 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1481566513.26.0.47817718709.issue28950@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
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. |
|
History
|
|---|
| 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 |
|