From 18ceaf0eea0c29a966662005e7f94af74e8a487d Mon Sep 17 00:00:00 2001 From: LiviaMedeiros Date: Fri, 22 Apr 2022 01:41:38 +0800 Subject: [PATCH 1/2] doc: remove legacy `-J` test.py option from BUILDING.md --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 31800bd66b0fc2..8a23e7e1be7c6b 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -324,13 +324,13 @@ You can execute the entire suite of tests for a given subsystem by providing the name of a subsystem: ```text -$ tools/test.py -J child-process +$ tools/test.py child-process ``` You can also execute the tests in a tests directory (such as `test/message`): ```text -$ tools/test.py -J test/message +$ tools/test.py test/message ``` If you want to check the other options, please refer to the help by using From 0a9e36de53e9610072c11d6a27a06bcb9226b8e3 Mon Sep 17 00:00:00 2001 From: LiviaMedeiros Date: Fri, 22 Apr 2022 02:14:25 +0800 Subject: [PATCH 2/2] doc: reword "test directory" --- BUILDING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index 8a23e7e1be7c6b..79094ebaf90f5f 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -327,7 +327,8 @@ by providing the name of a subsystem: $ tools/test.py child-process ``` -You can also execute the tests in a tests directory (such as `test/message`): +You can also execute the tests in a test suite directory +(such as `test/message`): ```text $ tools/test.py test/message