diff options
author | Sevinj Aghayeva <sevinj.aghayeva@gmail.com> | 2022-04-17 13:27:18 -0400 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-04-21 16:40:29 +0200 |
commit | ab0a2ac9c36854d3e9ebdbace5ccddc45029f839 (patch) | |
tree | 853cf1bcafc4d33007d398b0b5f6295cc48f6e7f | |
parent | bba4de97647ecc746f43764a0390f9756771cd13 (diff) | |
download | mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.tar mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.tar.gz mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.tar.bz2 mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.tar.lz mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.tar.xz mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.tar.zst mbuto-ab0a2ac9c36854d3e9ebdbace5ccddc45029f839.zip |
mbuto: fix the help error message
The examples in the help error message still show -c and -t suboptions when
choosing specific kselftest collections and tests. Capitalize them to match the
actual suboptions.
Signed-off-by: Sevinj Aghayeva <sevinj.aghayeva@gmail.com>
-rwxr-xr-x | mbuto | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1106,9 +1106,9 @@ usage() { echo " -T collection:test" echo " select a specific test to run" echo " Examples:" - echo " -p kselftests -c net" + echo " -p kselftests -C net" echo " run all the tests in net collection" - echo " -p kselftests -t net:ip_defrag.sh" + echo " -p kselftests -T net:ip_defrag.sh" echo " run ip_defrag.sh from net collection" echo " -s SCRIPT|-" echo " fix-up script to run before init, '-' for none" |