selftests/ftrace: Add test to remove instance with active event triggers

Add a test to ensure we clean up properly when removing an instance
with active event triggers.

Link: http://lkml.kernel.org/r/c479465b2009397708d6c52c8561e1523c22cd31.1494956770.git.naveen.n.rao@linux.vnet.ibm.com

Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
Naveen N. Rao 2017-05-16 23:21:28 +05:30 committed by Steven Rostedt (VMware)
parent d2ffb8d3cc
commit b172296b90

View File

@ -75,9 +75,13 @@ rmdir foo
if [ -d foo ]; then if [ -d foo ]; then
fail "foo still exists" fail "foo still exists"
fi fi
exit 0
mkdir foo
echo "schedule:enable_event:sched:sched_switch" > foo/set_ftrace_filter
rmdir foo
if [ -d foo ]; then
fail "foo still exists"
fi
instance_slam() { instance_slam() {