Message ID | 20241220-per-test-log-v1-1-de5afe69fdf4@google.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5cad94d7b9c4c920a07e074ebec8d3b9eaab9f34 |
Headers | show |
Series | selftests/run_kselftest.sh: Fix help string for --per-test-log | expand |
On 12/20/24 09:12, Brendan Jackman wrote: > This is documented as --per_test_log but the argument is actually > --per-test-log. > > Signed-off-by: Brendan Jackman <jackmanb@google.com> > --- > tools/testing/selftests/run_kselftest.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/run_kselftest.sh b/tools/testing/selftests/run_kselftest.sh > index a28c1416cb89b96ba5f8b287e68b324b51d95673..50e03eefe7ac70d1b21ec1da4d245182dda7b8ad 100755 > --- a/tools/testing/selftests/run_kselftest.sh > +++ b/tools/testing/selftests/run_kselftest.sh > @@ -21,7 +21,7 @@ usage() > cat <<EOF > Usage: $0 [OPTIONS] > -s | --summary Print summary with detailed log in output.log (conflict with -p) > - -p | --per_test_log Print test log in /tmp with each test name (conflict with -s) > + -p | --per-test-log Print test log in /tmp with each test name (conflict with -s) > -t | --test COLLECTION:TEST Run TEST from COLLECTION > -c | --collection COLLECTION Run all tests from COLLECTION > -l | --list List the available collection:test entries > > --- > base-commit: eabcdba3ad4098460a376538df2ae36500223c1e > change-id: 20241220-per-test-log-33ecf9d49406 > > Best regards, Thank you for the patch. Applied to linux-kselftest next for Linux 6.14-rc1 thanks, -- Shuah
diff --git a/tools/testing/selftests/run_kselftest.sh b/tools/testing/selftests/run_kselftest.sh index a28c1416cb89b96ba5f8b287e68b324b51d95673..50e03eefe7ac70d1b21ec1da4d245182dda7b8ad 100755 --- a/tools/testing/selftests/run_kselftest.sh +++ b/tools/testing/selftests/run_kselftest.sh @@ -21,7 +21,7 @@ usage() cat <<EOF Usage: $0 [OPTIONS] -s | --summary Print summary with detailed log in output.log (conflict with -p) - -p | --per_test_log Print test log in /tmp with each test name (conflict with -s) + -p | --per-test-log Print test log in /tmp with each test name (conflict with -s) -t | --test COLLECTION:TEST Run TEST from COLLECTION -c | --collection COLLECTION Run all tests from COLLECTION -l | --list List the available collection:test entries
This is documented as --per_test_log but the argument is actually --per-test-log. Signed-off-by: Brendan Jackman <jackmanb@google.com> --- tools/testing/selftests/run_kselftest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- base-commit: eabcdba3ad4098460a376538df2ae36500223c1e change-id: 20241220-per-test-log-33ecf9d49406 Best regards,