diff options
author | Brendan Jackman <jackmanb@google.com> | 2024-12-20 16:12:41 +0000 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2025-01-14 17:06:32 -0700 |
commit | 103c0b5e82fb0f7c66c410897588095e9a1f64f6 (patch) | |
tree | 1856b25010d78e030a864b592718413415d5a9da | |
parent | 9301be2ce104390d461442f1a092cd1c9c4d7b23 (diff) |
selftests/run_kselftest.sh: Fix help string for --per-test-log
This is documented as --per_test_log but the argument is actually
--per-test-log.
Link: https://lore.kernel.org/r/20241220-per-test-log-v1-1-de5afe69fdf4@google.com
Signed-off-by: Brendan Jackman <jackmanb@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
-rwxr-xr-x | tools/testing/selftests/run_kselftest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/run_kselftest.sh b/tools/testing/selftests/run_kselftest.sh index a28c1416cb89b..50e03eefe7ac7 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 |