Commit 8cd0d863 authored by Mark Brown's avatar Mark Brown Committed by Shuah Khan

selftests/ftace: Fix KTAP output ordering

The KTAP parser I used to test the KTAP output for ftracetest was overly
robust and did not notice that the test number and pass/fail result were
reversed. Fix this.

Fixes: dbcf7639 ("selftests/ftrace: Improve integration with kselftest runner")
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
Acked-by: default avatarMasami Hiramatsu (Google) <mhiramat@kernel.org>
Acked-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 1e2c4499
......@@ -301,7 +301,7 @@ ktaptest() { # result comment
comment="# $comment"
fi
echo $CASENO $result $INSTANCE$CASENAME $comment
echo $result $CASENO $INSTANCE$CASENAME $comment
}
eval_result() { # sigval
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment