-
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.
perf tests: Move perf_evsel__tp_sched_test into separate object
Separating perf_evsel__tp_sched_test test from the builtin-test into evsel-tp-sched object. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1352508412-16914-9-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
- Loading branch information
Jiri Olsa
authored and
Arnaldo Carvalho de Melo
committed
Nov 14, 2012
1 parent
cfffae2
commit 5e24a09
Showing
4 changed files
with
87 additions
and
82 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
#include "evsel.h" | ||
#include "tests.h" | ||
#include "event-parse.h" | ||
|
||
static int perf_evsel__test_field(struct perf_evsel *evsel, const char *name, | ||
int size, bool should_be_signed) | ||
{ | ||
struct format_field *field = perf_evsel__field(evsel, name); | ||
int is_signed; | ||
int ret = 0; | ||
|
||
if (field == NULL) { | ||
pr_debug("%s: \"%s\" field not found!\n", evsel->name, name); | ||
return -1; | ||
} | ||
|
||
is_signed = !!(field->flags | FIELD_IS_SIGNED); | ||
if (should_be_signed && !is_signed) { | ||
pr_debug("%s: \"%s\" signedness(%d) is wrong, should be %d\n", | ||
evsel->name, name, is_signed, should_be_signed); | ||
ret = -1; | ||
} | ||
|
||
if (field->size != size) { | ||
pr_debug("%s: \"%s\" size (%d) should be %d!\n", | ||
evsel->name, name, field->size, size); | ||
ret = -1; | ||
} | ||
|
||
return ret; | ||
} | ||
|
||
int test__perf_evsel__tp_sched_test(void) | ||
{ | ||
struct perf_evsel *evsel = perf_evsel__newtp("sched", "sched_switch", 0); | ||
int ret = 0; | ||
|
||
if (evsel == NULL) { | ||
pr_debug("perf_evsel__new\n"); | ||
return -1; | ||
} | ||
|
||
if (perf_evsel__test_field(evsel, "prev_comm", 16, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "prev_pid", 4, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "prev_prio", 4, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "prev_state", 8, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "next_comm", 16, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "next_pid", 4, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "next_prio", 4, true)) | ||
ret = -1; | ||
|
||
perf_evsel__delete(evsel); | ||
|
||
evsel = perf_evsel__newtp("sched", "sched_wakeup", 0); | ||
|
||
if (perf_evsel__test_field(evsel, "comm", 16, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "pid", 4, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "prio", 4, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "success", 4, true)) | ||
ret = -1; | ||
|
||
if (perf_evsel__test_field(evsel, "target_cpu", 4, true)) | ||
ret = -1; | ||
|
||
return ret; | ||
} |
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