diff options
Diffstat (limited to 'tools/perf/builtin-test.c')
-rw-r--r-- | tools/perf/builtin-test.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/perf/builtin-test.c b/tools/perf/builtin-test.c index 44d7df280430..1fa9f58c2af2 100644 --- a/tools/perf/builtin-test.c +++ b/tools/perf/builtin-test.c | |||
@@ -559,8 +559,13 @@ static int test__basic_mmap(void) | |||
559 | goto out_munmap; | 559 | goto out_munmap; |
560 | } | 560 | } |
561 | 561 | ||
562 | perf_event__parse_sample(event, attr.sample_type, sample_size, | 562 | err = perf_event__parse_sample(event, attr.sample_type, sample_size, |
563 | false, &sample); | 563 | false, &sample); |
564 | if (err) { | ||
565 | pr_err("Can't parse sample, err = %d\n", err); | ||
566 | goto out_munmap; | ||
567 | } | ||
568 | |||
564 | evsel = perf_evlist__id2evsel(evlist, sample.id); | 569 | evsel = perf_evlist__id2evsel(evlist, sample.id); |
565 | if (evsel == NULL) { | 570 | if (evsel == NULL) { |
566 | pr_debug("event with id %" PRIu64 | 571 | pr_debug("event with id %" PRIu64 |