diff options
author | Paul E. McKenney <paulmck@kernel.org> | 2021-02-17 16:15:41 +0100 |
---|---|---|
committer | Paul E. McKenney <paulmck@kernel.org> | 2021-03-22 16:29:18 +0100 |
commit | e633e63aa907feff98c654c1919101f3d53ebd5b (patch) | |
tree | 7157415337ffedaf8ce773cb08fb89de1a46d202 /tools/testing/selftests/rcutorture/bin/kvm.sh | |
parent | torture: Rename SRCU-t and SRCU-u to avoid lowercase characters (diff) | |
download | linux-e633e63aa907feff98c654c1919101f3d53ebd5b.tar.xz linux-e633e63aa907feff98c654c1919101f3d53ebd5b.zip |
torture: Make upper-case-only no-dot no-slash scenario names official
This commit enforces the defacto restriction on scenario names, which is
that they contain neither "/", ".", nor lowercase alphabetic characters.
This restriction avoids collisions between scenario names and the torture
scripting's files and directories.
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'tools/testing/selftests/rcutorture/bin/kvm.sh')
-rwxr-xr-x | tools/testing/selftests/rcutorture/bin/kvm.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/rcutorture/bin/kvm.sh b/tools/testing/selftests/rcutorture/bin/kvm.sh index efcbd12d5ddb..03364f4072bc 100755 --- a/tools/testing/selftests/rcutorture/bin/kvm.sh +++ b/tools/testing/selftests/rcutorture/bin/kvm.sh @@ -104,7 +104,7 @@ do TORTURE_BUILDONLY=1 ;; --configs|--config) - checkarg --configs "(list of config files)" "$#" "$2" '^[^/]\+$' '^--' + checkarg --configs "(list of config files)" "$#" "$2" '^[^/.a-z]\+$' '^--' configs="$configs $2" shift ;; |