From 2e9bb6a112586d39225257bde702d71ca8c3cfeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E7=A7=80=E5=90=89?= <84045975+thc1006@users.noreply.github.com> Date: Thu, 17 Jul 2025 05:40:15 +0800 Subject: [PATCH] Update CONTRIBUTING.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 蔡秀吉 <84045975+thc1006@users.noreply.github.com> --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c68acce34..3897a64c1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -240,7 +240,7 @@ where `n` is the number of times you want to run the tests. For example, to run the tests in order and only once, you can use the following command: ```bash -make test TESTARGS="-shuffle=off -count=1" +make test TESTFLAGS="-shuffle=off -count=1" ``` If a test fails, the seed that was used to randomize the tests will be printed. You can use this @@ -248,7 +248,7 @@ seed to reproduce the failure. For example, if the seed was `12345`, you can use command to reproduce the failure: ```bash -make test TESTARGS="-shuffle=on -seed=12345" +make test TESTFLAGS="-shuffle=on -seed=12345" ``` ## Pull Requests