diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2019-02-22 10:26:57 +0900 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2019-05-24 13:37:46 -0600 |
commit | 3fda9b33d60820eb2e3cc6f1c18fa5327c1c1921 (patch) | |
tree | 3e7125bcc483fb325f8d8b0bf8e9d3fb3b4951a5 /tools | |
parent | a188339ca5a396acc588e5851ed7e19f66b0ebd9 (diff) | |
download | linux-stable-3fda9b33d60820eb2e3cc6f1c18fa5327c1c1921.tar.gz linux-stable-3fda9b33d60820eb2e3cc6f1c18fa5327c1c1921.tar.bz2 linux-stable-3fda9b33d60820eb2e3cc6f1c18fa5327c1c1921.zip |
selftests/ftrace: Make a script checkbashisms clean
Make kprobe_ftrace.tc checkbashisms clean. Since
"grep function available_tracers" causes an error
on checkbashisms, fix it by explicitly escaping
with double-quotations.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/ftrace/test.d/kprobe/kprobe_ftrace.tc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_ftrace.tc b/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_ftrace.tc index 492426e95e09..7650a82db3f5 100644 --- a/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_ftrace.tc +++ b/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_ftrace.tc @@ -3,7 +3,7 @@ # description: Kprobe dynamic event with function tracer [ -f kprobe_events ] || exit_unsupported # this is configurable -grep function available_tracers || exit_unsupported # this is configurable +grep "function" available_tracers || exit_unsupported # this is configurable # prepare echo nop > current_tracer |