Commit 93f20eff authored by Hangbin Liu's avatar Hangbin Liu Committed by Shuah Khan
Browse files

selftests/run_kselftest.sh: fix dry-run typo



Should be -d instead of -n for dry-run.

Fixes: 5da19184 ("selftests/run_kselftest.sh: Make each test individually selectable")
Signed-off-by: default avatarHangbin Liu <liuhangbin@gmail.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 82f14794
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ while true; do
		-l | --list)
			echo "$available"
			exit 0 ;;
		-n | --dry-run)
		-d | --dry-run)
			dryrun="echo"
			shift ;;
		-h | --help)