-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tracing/filter: Add startup tests for events filter
Adding automated tests running as late_initcall. Tests are compiled in with CONFIG_FTRACE_STARTUP_TEST option. Adding test event "ftrace_test_filter" used to simulate filter processing during event occurance. String filters are compiled and tested against several test events with different values. Also testing that evaluation of explicit predicates is ommited due to the lazy filter evaluation. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Link: http://lkml.kernel.org/r/1313072754-4620-11-git-send-email-jolsa@redhat.com Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
- Loading branch information
Jiri Olsa
authored and
Steven Rostedt
committed
Aug 19, 2011
1 parent
f30120f
commit 1d0e78e
Showing
4 changed files
with
264 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM test | ||
|
||
#if !defined(_TRACE_TEST_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_TEST_H | ||
|
||
#include <linux/tracepoint.h> | ||
|
||
TRACE_EVENT(ftrace_test_filter, | ||
|
||
TP_PROTO(int a, int b, int c, int d, int e, int f, int g, int h), | ||
|
||
TP_ARGS(a, b, c, d, e, f, g, h), | ||
|
||
TP_STRUCT__entry( | ||
__field(int, a) | ||
__field(int, b) | ||
__field(int, c) | ||
__field(int, d) | ||
__field(int, e) | ||
__field(int, f) | ||
__field(int, g) | ||
__field(int, h) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->a = a; | ||
__entry->b = b; | ||
__entry->c = c; | ||
__entry->d = d; | ||
__entry->e = e; | ||
__entry->f = f; | ||
__entry->g = g; | ||
__entry->h = h; | ||
), | ||
|
||
TP_printk("a %d, b %d, c %d, d %d, e %d, f %d, g %d, h %d", | ||
__entry->a, __entry->b, __entry->c, __entry->d, | ||
__entry->e, __entry->f, __entry->g, __entry->h) | ||
); | ||
|
||
#endif /* _TRACE_TEST_H || TRACE_HEADER_MULTI_READ */ | ||
|
||
#undef TRACE_INCLUDE_PATH | ||
#undef TRACE_INCLUDE_FILE | ||
#define TRACE_INCLUDE_PATH . | ||
#define TRACE_INCLUDE_FILE trace_events_filter_test | ||
|
||
/* This part must be outside protection */ | ||
#include <trace/define_trace.h> |