Home
last modified time | relevance | path

Searched refs:TEST_ASSERT_VAL (Results 1 – 25 of 28) sorted by relevance

12

/linux/tools/perf/tests/
H A Dexpr.c22 TEST_ASSERT_VAL("ids__new", ids1); in test_ids_union()
24 TEST_ASSERT_VAL("ids__new", ids2); in test_ids_union()
31 TEST_ASSERT_VAL("ids__new", ids2); in test_ids_union()
41 TEST_ASSERT_VAL("ids__new", ids2); in test_ids_union()
49 TEST_ASSERT_VAL("ids__new", ids2); in test_ids_union()
66 TEST_ASSERT_VAL("parse test failed", 0); in test()
67 TEST_ASSERT_VAL("unexpected value", val == val2); in test()
83 TEST_ASSERT_VAL("get_cpuid", cpuid); in test__expr()
88 TEST_ASSERT_VAL("expr__ctx_new", ctx); in test__expr()
126 TEST_ASSERT_VAL("division by zero", ret == 0); in test__expr()
[all …]
H A Dsubcmd-help.c15 TEST_ASSERT_VAL("cannot find cmd", is_in_cmdlist(&cmds, "aaa") == 1); in test__load_cmdnames()
16 TEST_ASSERT_VAL("wrong cmd", is_in_cmdlist(&cmds, "bar") == 0); in test__load_cmdnames()
17 TEST_ASSERT_VAL("case sensitive", is_in_cmdlist(&cmds, "XYZ") == 0); in test__load_cmdnames()
33 TEST_ASSERT_VAL("invalid original size", cmds.cnt == 3); in test__uniq_cmdnames()
36 TEST_ASSERT_VAL("invalid final size", cmds.cnt == 2); in test__uniq_cmdnames()
38 TEST_ASSERT_VAL("cannot find cmd", is_in_cmdlist(&cmds, "aaa") == 1); in test__uniq_cmdnames()
39 TEST_ASSERT_VAL("cannot find cmd", is_in_cmdlist(&cmds, "bbb") == 1); in test__uniq_cmdnames()
40 TEST_ASSERT_VAL("wrong cmd", is_in_cmdlist(&cmds, "ccc") == 0); in test__uniq_cmdnames()
67 TEST_ASSERT_VAL("invalid original size", cmds1.cnt == 10); in test__exclude_cmdnames()
68 TEST_ASSERT_VAL("invalid original size", cmds2.cnt == 3); in test__exclude_cmdnames()
[all …]
H A Dthread-map.c27 TEST_ASSERT_VAL("failed to set process name", in test__thread_map()
32 TEST_ASSERT_VAL("failed to alloc map", map); in test__thread_map()
36 TEST_ASSERT_VAL("wrong nr", map->nr == 1); in test__thread_map()
37 TEST_ASSERT_VAL("wrong pid", in test__thread_map()
39 TEST_ASSERT_VAL("wrong comm", in test__thread_map()
42 TEST_ASSERT_VAL("wrong refcnt", in test__thread_map()
48 TEST_ASSERT_VAL("failed to alloc map", map); in test__thread_map()
52 TEST_ASSERT_VAL("wrong nr", map->nr == 1); in test__thread_map()
53 TEST_ASSERT_VAL("wrong pid", perf_thread_map__pid(map, 0) == -1); in test__thread_map()
54 TEST_ASSERT_VAL("wrong comm", in test__thread_map()
[all …]
H A Dtopology.c42 TEST_ASSERT_VAL("can't get session", !IS_ERR(session)); in session_write_header()
45 TEST_ASSERT_VAL("can't get evlist", session->evlist); in session_write_header()
54 TEST_ASSERT_VAL("failed to write header", in session_write_header()
76 TEST_ASSERT_VAL("can't get session", !IS_ERR(session)); in check_cpu_topology()
115 TEST_ASSERT_VAL("Session header CPU map not set", env->cpu); in check_cpu_topology()
129 TEST_ASSERT_VAL("Cpu map - CPU ID doesn't match", in check_cpu_topology()
132 TEST_ASSERT_VAL("Cpu map - Core ID doesn't match", in check_cpu_topology()
134 TEST_ASSERT_VAL("Cpu map - Socket ID doesn't match", in check_cpu_topology()
137 TEST_ASSERT_VAL("Cpu map - Die ID doesn't match", in check_cpu_topology()
139 TEST_ASSERT_VAL("Cpu map - Node ID is set", id.node == -1); in check_cpu_topology()
[all …]
H A Dhists_filter.c124 TEST_ASSERT_VAL("No memory", evlist); in test__hists_filter()
164 TEST_ASSERT_VAL("Invalid nr samples", in test__hists_filter()
166 TEST_ASSERT_VAL("Invalid nr hist entries", in test__hists_filter()
168 TEST_ASSERT_VAL("Invalid total period", in test__hists_filter()
170 TEST_ASSERT_VAL("Unmatched nr samples", in test__hists_filter()
173 TEST_ASSERT_VAL("Unmatched nr hist entries", in test__hists_filter()
175 TEST_ASSERT_VAL("Unmatched total period", in test__hists_filter()
189 TEST_ASSERT_VAL("Invalid nr samples", in test__hists_filter()
191 TEST_ASSERT_VAL("Invalid nr hist entries", in test__hists_filter()
193 TEST_ASSERT_VAL("Invalid total period", in test__hists_filter()
[all …]
H A Devent_update.c22 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_unit()
23 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__UNIT); in process_event_unit()
24 TEST_ASSERT_VAL("wrong unit", !strcmp(ev->unit, "KRAVA")); in process_event_unit()
35 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_scale()
36 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__SCALE); in process_event_scale()
37 TEST_ASSERT_VAL("wrong scale", ev->scale.scale == 0.123); in process_event_scale()
54 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_name()
55 TEST_ASSERT_VAL("wrong id", ev->type == PERF_EVENT_UPDATE__NAME); in process_event_name()
56 TEST_ASSERT_VAL("wrong name", !strcmp(ev->name, tmp->name)); in process_event_name()
70 TEST_ASSERT_VAL("wrong id", ev->id == 123); in process_event_cpus()
[all …]
H A Ddso-data.c135 TEST_ASSERT_VAL("No test file", file); in test__dso_data()
141 TEST_ASSERT_VAL("Failed to add dso", !dsos__add(&machine.dsos, dso)); in test__dso_data()
142 TEST_ASSERT_VAL("Failed to access to dso", in test__dso_data()
155 TEST_ASSERT_VAL("Wrong size", size == data->size); in test__dso_data()
156 TEST_ASSERT_VAL("Wrong data", !memcmp(buf, data->data, 10)); in test__dso_data()
166 TEST_ASSERT_VAL("ENOMEM\n", buf); in test__dso_data()
174 TEST_ASSERT_VAL("Wrong size", in test__dso_data()
178 TEST_ASSERT_VAL("Wrong data", in open_files_cnt()
202 TEST_ASSERT_VAL("failed to open fd directory", dir);
226 TEST_ASSERT_VAL("faile in dsos__delete()
[all...]
H A Dparse-metric.c141 TEST_ASSERT_VAL("failed to compute metric", in test_ipc()
144 TEST_ASSERT_VAL("IPC failed, wrong ratio", in test_ipc()
160 TEST_ASSERT_VAL("failed to compute metric", in test_frontend()
163 TEST_ASSERT_VAL("Frontend_Bound_SMT failed, wrong ratio", in test_frontend()
178 TEST_ASSERT_VAL("failed to compute metric", in test_cache_miss_cycles()
181 TEST_ASSERT_VAL("cache_miss_cycles failed, wrong ratio", in test_cache_miss_cycles()
221 TEST_ASSERT_VAL("failed to compute metric", in test_dcache_l2()
224 TEST_ASSERT_VAL("DCache_L2_Hits failed, wrong ratio", in test_dcache_l2()
227 TEST_ASSERT_VAL("failed to compute metric", in test_dcache_l2()
230 TEST_ASSERT_VAL("DCache_L2_Misses failed, wrong ratio", in test_dcache_l2()
[all …]
H A Dmaps.c105 TEST_ASSERT_VAL("failed to create maps", maps); in test__maps__merge_in()
111 TEST_ASSERT_VAL("failed to create map", map); in test__maps__merge_in()
115 TEST_ASSERT_VAL("failed to insert map", maps__insert(maps, map) == 0); in test__maps__merge_in()
120 TEST_ASSERT_VAL("failed to create map", map_kcore1); in test__maps__merge_in()
123 TEST_ASSERT_VAL("failed to create map", map_kcore2); in test__maps__merge_in()
126 TEST_ASSERT_VAL("failed to create map", map_kcore3); in test__maps__merge_in()
141 TEST_ASSERT_VAL("failed to merge map", !ret); in test__maps__merge_in()
144 TEST_ASSERT_VAL("merge check failed", !ret); in test__maps__merge_in()
147 TEST_ASSERT_VAL("failed to merge map", !ret); in test__maps__merge_in()
150 TEST_ASSERT_VAL("merge check failed", !ret); in test__maps__merge_in()
[all …]
H A Dhists_output.c181 TEST_ASSERT_VAL("Invalid hist entry", in test1()
187 TEST_ASSERT_VAL("Invalid hist entry", in test1()
193 TEST_ASSERT_VAL("Invalid hist entry", in test1()
199 TEST_ASSERT_VAL("Invalid hist entry", in test1()
205 TEST_ASSERT_VAL("Invalid hist entry", in test1()
211 TEST_ASSERT_VAL("Invalid hist entry", in test1()
217 TEST_ASSERT_VAL("Invalid hist entry", in test1()
223 TEST_ASSERT_VAL("Invalid hist entry", in test1()
229 TEST_ASSERT_VAL("Invalid hist entry", in test1()
281 TEST_ASSERT_VAL("Invalid hist entry", in test2()
[all …]
H A Dpe-file-parsing.c41 TEST_ASSERT_VAL("Failed to read build_id", in run_dir()
43 TEST_ASSERT_VAL("Wrong build_id", !memcmp(bid.data, expect_build_id, in run_dir()
47 TEST_ASSERT_VAL("Failed to read debuglink", ret == 0); in run_dir()
48 TEST_ASSERT_VAL("Wrong debuglink", in run_dir()
53 TEST_ASSERT_VAL("Failed to read debug file build_id", in run_dir()
55 TEST_ASSERT_VAL("Wrong build_id", !memcmp(bid.data, expect_build_id, in run_dir()
59 TEST_ASSERT_VAL("Failed to get dso", dso); in run_dir()
62 TEST_ASSERT_VAL("Failed to load symbols", ret == 0); in run_dir()
66 TEST_ASSERT_VAL("Failed to find main", sym); in run_dir()
H A Dbitmap.c46 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1")); in test__bitmap_print()
47 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,5")); in test__bitmap_print()
48 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3,5,7,9,11,13,15,17,19,21-40")); in test__bitmap_print()
49 TEST_ASSERT_VAL("failed to convert map", test_bitmap("2-5")); in test__bitmap_print()
50 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3-6,8-10,24,35-37")); in test__bitmap_print()
51 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1,3-6,8-10,24,35-37")); in test__bitmap_print()
52 TEST_ASSERT_VAL("failed to convert map", test_bitmap("1-10,12-20,22-30,32-40")); in test__bitmap_print()
H A Dutil.c72 TEST_ASSERT_VAL("inconsistent BLAKE2s hashes", in test_blake2s()
84 TEST_ASSERT_VAL("wrong BLAKE2s hashes", in test_blake2s()
91 TEST_ASSERT_VAL("empty string", test_strreplace(' ', "", "123", "")); in test__util()
92 TEST_ASSERT_VAL("no match", test_strreplace('5', "123", "4", "123")); in test__util()
93 TEST_ASSERT_VAL("replace 1", test_strreplace('3', "123", "4", "124")); in test__util()
94 TEST_ASSERT_VAL("replace 2", test_strreplace('a', "abcabc", "ef", "efbcefbc")); in test__util()
95 TEST_ASSERT_VAL("replace long", test_strreplace('a', "abcabc", "longlong", in test__util()
H A Dkmod-path.c17 TEST_ASSERT_VAL("kmod_path__parse", in test()
23 TEST_ASSERT_VAL("wrong kmod", m.kmod == kmod); in test()
24 TEST_ASSERT_VAL("wrong comp", m.comp == comp); in test()
27 TEST_ASSERT_VAL("wrong name", m.name && !strcmp(name, m.name)); in test()
29 TEST_ASSERT_VAL("wrong name", !m.name); in test()
37 TEST_ASSERT_VAL("is_kernel_module", in test_is_kernel_module()
45 TEST_ASSERT_VAL("failed", !test(path, an, k, c, n))
48 TEST_ASSERT_VAL("failed", !test_is_kernel_module(path, c, e))
H A Dthread-maps-share.c42 TEST_ASSERT_VAL("failed to create threads", in test__thread_maps_share()
49 TEST_ASSERT_VAL("maps don't match", maps__equal(maps, thread__maps(t1))); in test__thread_maps_share()
50 TEST_ASSERT_VAL("maps don't match", maps__equal(maps, thread__maps(t2))); in test__thread_maps_share()
51 TEST_ASSERT_VAL("maps don't match", maps__equal(maps, thread__maps(t3))); in test__thread_maps_share()
59 TEST_ASSERT_VAL("failed to find other leader", other_leader); in test__thread_maps_share()
76 TEST_ASSERT_VAL("maps don't match", maps__equal(other_maps, thread__maps(other_leader))); in test__thread_maps_share()
H A Dpmu.c503 TEST_ASSERT_VAL("cpu", pmu_name_len_no_suffix("cpu") == strlen("cpu")); in test__name_len()
504 TEST_ASSERT_VAL("i915", pmu_name_len_no_suffix("i915") == strlen("i915")); in test__name_len()
505 TEST_ASSERT_VAL("cpum_cf", pmu_name_len_no_suffix("cpum_cf") == strlen("cpum_cf")); in test__name_len()
507 TEST_ASSERT_VAL("Strips uncore_cha suffix", in test__name_len()
512 TEST_ASSERT_VAL("Strips mrvl_ddr_pmu suffix", in test__name_len()
524 TEST_ASSERT_VAL("i915", pmu_name_cmp("cpu", "i915") < 0); in test__name_cmp()
525 TEST_ASSERT_VAL("i915", pmu_name_cmp("i915", "cpu") > 0); in test__name_cmp()
526 TEST_ASSERT_VAL("cpum_cf", pmu_name_cmp("cpum_cf", "cpum_ce") > 0); in test__name_cmp()
527 TEST_ASSERT_VAL("cpum_cf", pmu_name_cmp("cpum_cf", "cpum_d0") < 0); in test__name_cmp()
529 TEST_ASSERT_VAL("uncore_cha suffixes ordered lt", in test__name_cmp()
[all …]
H A Dhists_cumulate.c221 TEST_ASSERT_VAL("Incorrect number of hist entry", in do_test()
223 TEST_ASSERT_VAL(buf, he->stat.period == expected[i].self && in do_test()
229 TEST_ASSERT_VAL(buf, he->stat_acc->period == expected[i].children); in do_test()
237 TEST_ASSERT_VAL("callchains expected", !RB_EMPTY_ROOT(root)); in do_test()
244 TEST_ASSERT_VAL("Incorrect number of callchain entry", in do_test()
246 TEST_ASSERT_VAL(buf, in do_test()
252 TEST_ASSERT_VAL("Incorrect number of callchain entry", in do_test()
255 TEST_ASSERT_VAL("Incorrect number of hist entry", in do_test()
257 TEST_ASSERT_VAL("Incorrect number of callchain entry", in do_test()
720 TEST_ASSERT_VAL("No memory", evlist); in test__hists_cumulate()
H A Dmmap-thread-lookup.c170 TEST_ASSERT_VAL("failed to create threads", !threads_create()); in mmap_events()
181 TEST_ASSERT_VAL("failed to destroy threads", !threads_destroy()); in mmap_events()
182 TEST_ASSERT_VAL("failed to synthesize maps", !err); in mmap_events()
236 TEST_ASSERT_VAL("failed with synthesizing all", in test__mmap_thread_lookup()
240 TEST_ASSERT_VAL("failed with synthesizing process", in test__mmap_thread_lookup()
H A Dexpand-cgroup.c28 TEST_ASSERT_VAL("evlist is empty", !evlist__empty(evlist)); in test_expand_events()
104 TEST_ASSERT_VAL("failed to get evlist", evlist); in expand_default_events()
121 TEST_ASSERT_VAL("failed to get evlist", evlist); in expand_group_events()
150 TEST_ASSERT_VAL("failed to get evlist", evlist); in expand_libpfm_events()
177 TEST_ASSERT_VAL("failed to get evlist", evlist); in expand_metric_events()
H A Dparse-events.c177 TEST_ASSERT_VAL("Raw PMU not matched", raw_type_match); in test__checkevent_raw()
820 TEST_ASSERT_VAL("wrong type term", in test__checkterms_simple()
822 TEST_ASSERT_VAL("wrong type val", in test__checkterms_simple()
824 TEST_ASSERT_VAL("wrong val", term->val.num == 10); in test__checkterms_simple()
825 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "config")); in test__checkterms_simple()
829 TEST_ASSERT_VAL("wrong type term", in test__checkterms_simple()
831 TEST_ASSERT_VAL("wrong type val", in test__checkterms_simple()
833 TEST_ASSERT_VAL("wrong val", term->val.num == 1); in test__checkterms_simple()
834 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "config1")); in test__checkterms_simple()
838 TEST_ASSERT_VAL("wrong type term", in test__checkterms_simple()
[all …]
H A Dbp_account.c89 TEST_ASSERT_VAL("failed to create wp\n", fd[i] != -1); in bp_accounting()
99 TEST_ASSERT_VAL("failed to modify wp\n", ret == 0); in bp_accounting()
105 TEST_ASSERT_VAL("failed to create max wp\n", fd_wp != -1); in bp_accounting()
H A Devent-times.c193 TEST_ASSERT_VAL("failed to attach", !err); in test_times()
197 TEST_ASSERT_VAL("failed to detach", !detach(evlist)); in test_times()
H A Dmem.c19 TEST_ASSERT_VAL("Memory allocation failed", mi); in check()
25 TEST_ASSERT_VAL(failure, !strcmp(string, out));
/linux/tools/perf/arch/x86/tests/
H A Dhybrid.c29 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->core.nr_entries); in test__hybrid_hw_event_with_pmu()
30 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->core.attr.type); in test__hybrid_hw_event_with_pmu()
31 TEST_ASSERT_VAL("wrong hybrid type", test_hybrid_type(evsel, PERF_TYPE_RAW)); in test__hybrid_hw_event_with_pmu()
32 TEST_ASSERT_VAL("wrong config", test_config(evsel, PERF_COUNT_HW_CPU_CYCLES)); in test__hybrid_hw_event_with_pmu()
41 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->core.nr_entries); in test__hybrid_hw_group_event()
42 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->core.attr.type); in test__hybrid_hw_group_event()
43 TEST_ASSERT_VAL("wrong hybrid type", test_hybrid_type(evsel, PERF_TYPE_RAW)); in test__hybrid_hw_group_event()
44 TEST_ASSERT_VAL("wrong config", test_config(evsel, PERF_COUNT_HW_CPU_CYCLES)); in test__hybrid_hw_group_event()
45 TEST_ASSERT_VAL("wrong leader", evsel__has_leader(evsel, leader)); in test__hybrid_hw_group_event()
48 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->core.attr.type); in test__hybrid_hw_group_event()
[all …]
H A Dbp-modify.c204 TEST_ASSERT_VAL("modify test 1 failed\n", !bp_modify1()); in test__bp_modify()
205 TEST_ASSERT_VAL("modify test 2 failed\n", !bp_modify2()); in test__bp_modify()

12