Commit 1e11b7db authored by Masami Hiramatsu's avatar Masami Hiramatsu Committed by Shuah Khan
Browse files

selftests/ftrace: Return unsupported for the unconfigured features



As same as other test cases, return unsupported if kprobe_events
or argument access feature are not found.

There can be a new arch which does not port those features yet,
and an older kernel which doesn't support it.
Those can not enable the features.

Signed-off-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
Reviewed-by: default avatarTom Zanussi <zanussi@kernel.org>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 76ebbc27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ fi

if [ ! -f kprobe_events ]; then
	echo "No kprobe_events file -please build CONFIG_KPROBE_EVENTS"
	exit_unresolved;
	exit_unsupported;
fi

echo "Let the module run a little"
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

[ -f kprobe_events ] || exit_unsupported # this is configurable

grep -q '\$arg<N>' README || exit_unresolved # depends on arch
grep -q '\$arg<N>' README || exit_unsupported # depends on arch
grep -A10 "fetcharg:" README | grep -q 'ustring' || exit_unsupported
grep -A10 "fetcharg:" README | grep -q '\[u\]<offset>' || exit_unsupported