projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82f1479
)
selftests/run_kselftest.sh: fix dry-run typo
author
Hangbin Liu
<liuhangbin@gmail.com>
Wed, 28 Oct 2020 08:31:14 +0000
(16:31 +0800)
committer
Shuah Khan
<skhan@linuxfoundation.org>
Tue, 10 Nov 2020 21:51:39 +0000
(14:51 -0700)
Should be -d instead of -n for dry-run.
Fixes: 5da1918446a1 ("selftests/run_kselftest.sh: Make each test individually selectable")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/run_kselftest.sh
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/run_kselftest.sh
b/tools/testing/selftests/run_kselftest.sh
index 609a4ef9300e32f6e6cc04a22a3ac63628eb6532..97165a83df632080a1203f733ef8c3c3d9a43c32 100755
(executable)
--- a/
tools/testing/selftests/run_kselftest.sh
+++ b/
tools/testing/selftests/run_kselftest.sh
@@
-48,7
+48,7
@@
while true; do
-l | --list)
echo "$available"
exit 0 ;;
- -
n
| --dry-run)
+ -
d
| --dry-run)
dryrun="echo"
shift ;;
-h | --help)