From 41e7219127d2895d2d223a75672cf312e476bfa5 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 20 Feb 2017 09:44:35 +0800 Subject: [PATCH 1/2] [trivial] Add tests_config.ini to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8ace3c712..479889cb7 100644 --- a/.gitignore +++ b/.gitignore @@ -102,6 +102,7 @@ linux-coverage-build linux-build win32-build qa/pull-tester/tests_config.py +qa/pull-tester/tests_config.ini qa/cache/* !src/leveldb*/Makefile From 851f6a39f10379bfdb27e18c87b322b942abe914 Mon Sep 17 00:00:00 2001 From: fanquake Date: Mon, 20 Feb 2017 09:45:32 +0800 Subject: [PATCH 2/2] [qa][doc] Correct rpc test options in readme --- qa/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qa/README.md b/qa/README.md index 225207cc1..f4dce7af5 100644 --- a/qa/README.md +++ b/qa/README.md @@ -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).