[qa][doc] Correct rpc test options in readme

This commit is contained in:
fanquake 2017-02-20 09:45:32 +08:00
parent 41e7219127
commit 851f6a39f1
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1
1 changed files with 4 additions and 4 deletions

View File

@ -39,12 +39,12 @@ Run the regression test suite with
Run all possible tests with
qa/pull-tester/rpc-tests.py -extended
qa/pull-tester/rpc-tests.py --extended
By default, tests will be run in parallel. To specify how many jobs to run,
append `-parallel=n` (default n=4).
append `--jobs=n` (default n=4).
If you want to create a basic coverage report for the rpc test suite, append `--coverage`.
If you want to create a basic coverage report for the RPC test suite, append `--coverage`.
Possible options, which apply to each individual test run:
@ -83,5 +83,5 @@ killall bitcoind
Writing tests
=============
You are encouraged to write tests for new or existing features.
Further information about the test framework and individual rpc
Further information about the test framework and individual RPC
tests is found in [qa/rpc-tests](/qa/rpc-tests).