diff options
author | Wang Nan <wangnan0@huawei.com> | 2015-11-17 03:32:46 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-11-18 15:51:04 -0500 |
commit | ad0dd7aed5df8009b3ffa39bec73ad93283332c9 (patch) | |
tree | d001a6717f3988476f4e0d5f94c928c7b5a7845b /tools | |
parent | bbb7d4925a05ecd5bbfdbc1147d402b0db203a5a (diff) |
perf test: Fix 'perf test BPF' when it fails to find a suitable vmlinux
Two bugs in 'perf test BPF' are found when testing BPF prologue without
vmlinux:
# mv /lib/modules/4.3.0-rc4+/build/vmlinux{,.bak}
# ./perf test BPF
37: Test BPF filter :Failed to find the path for kernel: No such file or directory
Ok
Test BPF should fail in this case.
After this patch:
# ./perf test BPF
37: Test BPF filter :Failed to find the path for kernel: No such file or directory
FAILED!
# mv /lib/modules/4.3.0-rc4+/build/vmlinux{.bak,}
# ./perf test BPF
37: Test BPF filter : Ok
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1447749170-175898-2-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/tests/bpf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/perf/tests/bpf.c b/tools/perf/tests/bpf.c index d58442294e9e..232043cc232a 100644 --- a/tools/perf/tests/bpf.c +++ b/tools/perf/tests/bpf.c | |||
@@ -102,8 +102,7 @@ static int do_test(struct bpf_object *obj, int (*func)(void), | |||
102 | err = parse_events_load_bpf_obj(&parse_evlist, &parse_evlist.list, obj); | 102 | err = parse_events_load_bpf_obj(&parse_evlist, &parse_evlist.list, obj); |
103 | if (err || list_empty(&parse_evlist.list)) { | 103 | if (err || list_empty(&parse_evlist.list)) { |
104 | pr_debug("Failed to add events selected by BPF\n"); | 104 | pr_debug("Failed to add events selected by BPF\n"); |
105 | if (!err) | 105 | return TEST_FAIL; |
106 | return TEST_FAIL; | ||
107 | } | 106 | } |
108 | 107 | ||
109 | snprintf(pid, sizeof(pid), "%d", getpid()); | 108 | snprintf(pid, sizeof(pid), "%d", getpid()); |
@@ -157,8 +156,10 @@ static int do_test(struct bpf_object *obj, int (*func)(void), | |||
157 | } | 156 | } |
158 | } | 157 | } |
159 | 158 | ||
160 | if (count != expect) | 159 | if (count != expect) { |
161 | pr_debug("BPF filter result incorrect\n"); | 160 | pr_debug("BPF filter result incorrect\n"); |
161 | goto out_delete_evlist; | ||
162 | } | ||
162 | 163 | ||
163 | ret = TEST_OK; | 164 | ret = TEST_OK; |
164 | 165 | ||