selftests/ftrace: Fix checkbashisms errors
commit b07b7e2fd51840c7dfffa98c4344ab36195bb8dc upstream. Fix the below checkbashisms errors. Because of these errors, these tests will fail on dash shell. possible bashism in test.d/kprobe/kretprobe_entry_arg.tc line 14 ('function' is useless): function streq() { possible bashism in test.d/dynevent/fprobe_entry_arg.tc line 14 ('function' is useless): function streq() { Fixes: f6e2253a617c ("selftests/ftrace: Add test cases for entry args at function exit") Cc: stable@vger.kernel.org Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
492f73bcb4
commit
da10fc52ca
@ -11,7 +11,7 @@ echo 1 > events/tests/enable
|
||||
echo > trace
|
||||
cat trace > /dev/null
|
||||
|
||||
function streq() {
|
||||
streq() {
|
||||
test $1 = $2
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,7 @@ echo 1 > events/kprobes/enable
|
||||
echo > trace
|
||||
cat trace > /dev/null
|
||||
|
||||
function streq() {
|
||||
streq() {
|
||||
test $1 = $2
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user