From 102602bf664e64ddbcfaba0453e5075d4e7e1fcb Mon Sep 17 00:00:00 2001 From: "zha.wei" Date: Mon, 4 Sep 2023 10:57:43 +0800 Subject: [PATCH] =?UTF-8?q?description:=E4=BF=AE=E6=94=B9=E8=B6=85?= =?UTF-8?q?=E8=BF=87120=E9=95=BF=E5=BA=A6=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zha.wei --- test262/run_test262.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test262/run_test262.py b/test262/run_test262.py index 0a73f288ca..ce58f52cd1 100755 --- a/test262/run_test262.py +++ b/test262/run_test262.py @@ -54,12 +54,14 @@ def parse_args(): parser.add_argument('--es2022', default=False, const='all', nargs='?', choices=['all', 'only'], help='Run test262 - ES2022. ' + - 'all: Contains all use cases for es5_tests and es2015_tests and es2021_tests and es2022_tests and intl_tests' + + 'all: Contains all use cases for es5_tests and es2015_tests and es2021_tests' + + 'and es2022_tests and intl_tests' + 'only: Only include use cases for ES2022') parser.add_argument('--es2023', default=False, const='all', nargs='?', choices=['all', 'only'], help='Run test262 - ES2023. ' + - 'all: Contains all use cases for es5_tests and es2015_tests and es2021_tests and es2022_tests and es2023_tests and intl_tests' + + 'all: Contains all use cases for es5_tests and es2015_tests and es2021_tests' + + 'and es2022_tests and es2023_tests and intl_tests' + 'only: Only include use cases for ES2023') parser.add_argument('--intl', default=False, const='intl', nargs='?', choices=['intl'], -- Gitee