OpenCloudOS-Kernel/tools/testing/selftests/ftrace/test.d
Steven Rostedt (Red Hat) 0ded5174e9 ftracetest: Fix hist unsupported result in hist selftests
When histograms are not configured in the kernel, the ftracetest histogram
selftests should return "unsupported" and not "Failed". To detect this, the
test scripts have:

 FEATURE=`grep hist events/sched/sched_process_fork/trigger`
 if [ -z "$FEATURE" ]; then
     echo "hist trigger is not supported"
     exit_unsupported
 fi

The problem is that '-e' is in effect and any error will cause the program
to terminate. The grep for 'hist' fails, because it is not compiled it (thus
unsupported), but because grep has an error code for failing to find the
string, it causes the program to terminate, and is marked as a failed test.

Namhyung Kim recommended to test for the "hist" file located in
events/sched/sched_process_fork/hist instead, as it is more inline with the
other checks. As the hist file is only created if the histogram feature is
enabled, that is a valid check.

Link: http://lkml.kernel.org/r/20160523151538.4ea9ce0c@gandalf.local.home

Suggested-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Masami Hiramatsu <mhiramat@kernel.org>
Fixes: 76929ab51f ("kselftests/ftrace: Add hist trigger testcases")
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
2016-06-20 09:46:21 -04:00
..
00basic ftracetest: Convert exit -1 to exit $FAIL 2015-03-31 10:15:46 -06:00
event kselftests/ftrace: Add a test case for event pid filtering 2016-05-16 09:02:03 -06:00
ftrace ftracetest: Convert exit -1 to exit $FAIL 2015-03-31 10:15:46 -06:00
instances ftracetest: Use proper logic to find process PID 2016-05-23 10:04:46 -04:00
kprobe selftests: kprobe: Choose an always-defined function to probe 2015-11-03 16:54:51 -07:00
trigger ftracetest: Fix hist unsupported result in hist selftests 2016-06-20 09:46:21 -04:00
functions kselftests/ftrace : Add event trigger testcases 2016-04-19 18:56:01 -04:00
template ftracetest: Add POSIX.3 standard and XFAIL result codes 2014-10-03 16:44:02 -04:00