diff options
author | Kan Liang <kan.liang@intel.com> | 2017-08-29 13:11:12 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-09-01 13:46:34 -0400 |
commit | fc33dccba39584e403436b9cda3edc9c34b62bce (patch) | |
tree | 94f2c737ce94afee0c8ef008dbe1847dcbc043a8 /tools | |
parent | 49d58f04eb6cdc18b3747fc4243a7114364f5420 (diff) |
perf test: Add test case for PERF_SAMPLE_PHYS_ADDR
Extend sample-parsing test cases to support new sample type
PERF_SAMPLE_PHYS_ADDR.
Signed-off-by: Kan Liang <kan.liang@intel.com>
Tested-by: Jiri Olsa <jolsa@redhat.com>
Acked-by: Stephane Eranian <eranian@google.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Madhavan Srinivasan <maddy@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1504026672-7304-6-git-send-email-kan.liang@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/tests/sample-parsing.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/perf/tests/sample-parsing.c b/tools/perf/tests/sample-parsing.c index 6d028f42b3cf..c3858487159d 100644 --- a/tools/perf/tests/sample-parsing.c +++ b/tools/perf/tests/sample-parsing.c | |||
@@ -141,6 +141,9 @@ static bool samples_same(const struct perf_sample *s1, | |||
141 | } | 141 | } |
142 | } | 142 | } |
143 | 143 | ||
144 | if (type & PERF_SAMPLE_PHYS_ADDR) | ||
145 | COMP(phys_addr); | ||
146 | |||
144 | return true; | 147 | return true; |
145 | } | 148 | } |
146 | 149 | ||
@@ -206,6 +209,7 @@ static int do_test(u64 sample_type, u64 sample_regs, u64 read_format) | |||
206 | .mask = sample_regs, | 209 | .mask = sample_regs, |
207 | .regs = regs, | 210 | .regs = regs, |
208 | }, | 211 | }, |
212 | .phys_addr = 113, | ||
209 | }; | 213 | }; |
210 | struct sample_read_value values[] = {{1, 5}, {9, 3}, {2, 7}, {6, 4},}; | 214 | struct sample_read_value values[] = {{1, 5}, {9, 3}, {2, 7}, {6, 4},}; |
211 | struct perf_sample sample_out; | 215 | struct perf_sample sample_out; |
@@ -305,7 +309,7 @@ int test__sample_parsing(struct test *test __maybe_unused, int subtest __maybe_u | |||
305 | * were added. Please actually update the test rather than just change | 309 | * were added. Please actually update the test rather than just change |
306 | * the condition below. | 310 | * the condition below. |
307 | */ | 311 | */ |
308 | if (PERF_SAMPLE_MAX > PERF_SAMPLE_REGS_INTR << 1) { | 312 | if (PERF_SAMPLE_MAX > PERF_SAMPLE_PHYS_ADDR << 1) { |
309 | pr_debug("sample format has changed, some new PERF_SAMPLE_ bit was introduced - test needs updating\n"); | 313 | pr_debug("sample format has changed, some new PERF_SAMPLE_ bit was introduced - test needs updating\n"); |
310 | return -1; | 314 | return -1; |
311 | } | 315 | } |