aboutsummaryrefslogtreecommitdiff
path: root/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'runme.sh')
-rwxr-xr-xrunme.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/runme.sh b/runme.sh
index bc1f598..b1c5bd9 100755
--- a/runme.sh
+++ b/runme.sh
@@ -11,7 +11,7 @@ source special-tests.sh
FUNC=basic # do basic tests by default
# Check validity of arguments
-USAGE="Usage: $0 [-h] [-odgf args]\n\t[-h <help>]\n\t[-o <output-file-for-dump>]\n\t[-d <driver's module name: only with -f=modtest>] \n\t[-g <governor's module name: only with -f=modtest>] \n\t[-f <basic: cpufreq_basic_tests, suspend, hibernate, sp1: governor_race, sp2: simple_lockdep, sp3: hotplug_with_updates, modtest: driver as module>]\n"
+USAGE="Usage: $0 [-h] [-odgf args]\n\t[-h <help>]\n\t[-o <output-file-for-dump>]\n\t[-d <driver's module name: only with -f=modtest>] \n\t[-g <governor's module name: only with -f=modtest>] \n\t[-f <basic: cpufreq_basic_tests, suspend, hibernate, sp1: governor_race, sp2: simple_lockdep, sp3: hotplug_with_updates, sp4: concurrent_lockdep, modtest: driver as module>]\n"
# Parse arguments
parse_arguments()
@@ -107,6 +107,10 @@ __run_func()
hotplug_with_updates
;;
+ "sp4")
+ concurrent_lockdep
+ ;;
+
*)
echo "Invalid [-f] function type"
printf "$USAGE"