From ce884c0a2e08b2b40e0d05299f94a8ceae7f38e0 Mon Sep 17 00:00:00 2001 From: kysnm Date: Fri, 5 May 2017 00:23:18 +0900 Subject: [PATCH 1/7] doc: Change test option at STEP 5: Test in CONTRIBUTING.md --- CONTRIBUTING.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2b88de1db1e27c..d38b8b0101e766 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -185,7 +185,19 @@ If you are updating tests and just want to run a single test to check it, you can use this syntax to run it exactly as the test harness would: ```text -$ python tools/test.py -v --mode=release parallel/test-stream2-transform +$ python tools/test.py --mode=release parallel/test-stream2-transform +``` + +You can run tests in parallel with option `-J` + +```text +$ python tools/test.py -J --mode=release parallel +``` + +If you want to check the other option, please refer the help with option `--help` + +```text +$ python tools/test.py --help ``` You can run tests directly with node: From 7832bb62a57f5e1945f2d1bbb19c16cde4ed56c4 Mon Sep 17 00:00:00 2001 From: kysnm Date: Fri, 5 May 2017 02:09:46 +0900 Subject: [PATCH 2/7] Remove unnecessary sentence --- CONTRIBUTING.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d38b8b0101e766..1cca19574f2839 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,12 +188,6 @@ can use this syntax to run it exactly as the test harness would: $ python tools/test.py --mode=release parallel/test-stream2-transform ``` -You can run tests in parallel with option `-J` - -```text -$ python tools/test.py -J --mode=release parallel -``` - If you want to check the other option, please refer the help with option `--help` ```text From def6cf0f8ec92fa2bbbb9463b33e8aa8e91e4b00 Mon Sep 17 00:00:00 2001 From: kysnm Date: Fri, 5 May 2017 02:26:48 +0900 Subject: [PATCH 3/7] Follow the doc linting --- CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1cca19574f2839..27703e64104f8b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,7 +188,8 @@ can use this syntax to run it exactly as the test harness would: $ python tools/test.py --mode=release parallel/test-stream2-transform ``` -If you want to check the other option, please refer the help with option `--help` +If you want to check the other option, please refer the help with option +`--help` ```text $ python tools/test.py --help From c05c32597b2d6969a3c56c22e8b4af43bb501079 Mon Sep 17 00:00:00 2001 From: kysnm Date: Fri, 5 May 2017 02:41:38 +0900 Subject: [PATCH 4/7] Fix to words more better --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 27703e64104f8b..4a2c0b42a01aa5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,8 +188,8 @@ can use this syntax to run it exactly as the test harness would: $ python tools/test.py --mode=release parallel/test-stream2-transform ``` -If you want to check the other option, please refer the help with option -`--help` +If you want to check the other option, please refer to the help with the option + `--help` ```text $ python tools/test.py --help From fd8324ecd133410b83a86139e7be27ab80b259c2 Mon Sep 17 00:00:00 2001 From: kysnm Date: Fri, 5 May 2017 03:45:52 +0900 Subject: [PATCH 5/7] Fix to plural --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a2c0b42a01aa5..836dbf05666365 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,8 +188,8 @@ can use this syntax to run it exactly as the test harness would: $ python tools/test.py --mode=release parallel/test-stream2-transform ``` -If you want to check the other option, please refer to the help with the option - `--help` +If you want to check the other options, please refer to the help with the +option `--help` ```text $ python tools/test.py --help From 2d522439ada3be733f1b89a6c99fb89d73ba70c8 Mon Sep 17 00:00:00 2001 From: kysnm Date: Mon, 8 May 2017 01:54:50 +0900 Subject: [PATCH 6/7] Change the word more naturally --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 836dbf05666365..89c6885ea99386 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -188,8 +188,8 @@ can use this syntax to run it exactly as the test harness would: $ python tools/test.py --mode=release parallel/test-stream2-transform ``` -If you want to check the other options, please refer to the help with the -option `--help` +If you want to check the other options, please refer to the help by using +the `--help` option ```text $ python tools/test.py --help From f7a15d7426064cf37aab50faa2b6a1efe689a802 Mon Sep 17 00:00:00 2001 From: kysnm Date: Fri, 12 May 2017 00:49:02 +0900 Subject: [PATCH 7/7] Add option `-J` --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 89c6885ea99386..0f8899b0c09339 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -185,7 +185,7 @@ If you are updating tests and just want to run a single test to check it, you can use this syntax to run it exactly as the test harness would: ```text -$ python tools/test.py --mode=release parallel/test-stream2-transform +$ python tools/test.py -J --mode=release parallel/test-stream2-transform ``` If you want to check the other options, please refer to the help by using