/linux/tools/perf/tests/ |
H A D | pmu.c | 431 TEST_ASSERT_EQUAL("cpu", pmu_name_cmp("cpu", "cpu"), 0); in test__name_cmp() 432 TEST_ASSERT_EQUAL("i915", pmu_name_cmp("i915", "i915"), 0); in test__name_cmp() 433 TEST_ASSERT_EQUAL("cpum_cf", pmu_name_cmp("cpum_cf", "cpum_cf"), 0); in test__name_cmp() 465 TEST_ASSERT_EQUAL("Exact match", perf_pmu__match(&test_pmu, "pmuname"), true); in test__pmu_match() 466 TEST_ASSERT_EQUAL("Longer token", perf_pmu__match(&test_pmu, "longertoken"), false); in test__pmu_match() 467 TEST_ASSERT_EQUAL("Shorter token", perf_pmu__match(&test_pmu, "pmu"), false); in test__pmu_match() 470 TEST_ASSERT_EQUAL("Diff suffix_", perf_pmu__match(&test_pmu, "pmuname_2"), false); in test__pmu_match() 471 TEST_ASSERT_EQUAL("Sub suffix_", perf_pmu__match(&test_pmu, "pmuname_1"), true); in test__pmu_match() 472 TEST_ASSERT_EQUAL("Same suffix_", perf_pmu__match(&test_pmu, "pmuname_10"), true); in test__pmu_match() 473 TEST_ASSERT_EQUAL("No suffix_", perf_pmu__match(&test_pmu, "pmuname"), true); in test__pmu_match() [all …]
|
H A D | thread-maps-share.c | 46 TEST_ASSERT_EQUAL("wrong refcnt", refcount_read(maps__refcnt(maps)), 4); in test__thread_maps_share() 74 TEST_ASSERT_EQUAL("wrong refcnt", refcount_read(maps__refcnt(other_maps)), 2); in test__thread_maps_share() 80 TEST_ASSERT_EQUAL("wrong refcnt", refcount_read(maps__refcnt(maps)), 3); in test__thread_maps_share() 83 TEST_ASSERT_EQUAL("wrong refcnt", refcount_read(maps__refcnt(maps)), 2); in test__thread_maps_share() 86 TEST_ASSERT_EQUAL("wrong refcnt", refcount_read(maps__refcnt(maps)), 1); in test__thread_maps_share() 92 TEST_ASSERT_EQUAL("wrong refcnt", refcount_read(maps__refcnt(other_maps)), 1); in test__thread_maps_share()
|
H A D | sigtrap.c | 195 TEST_ASSERT_EQUAL("pthread_join() failed", pthread_join(threads[i], NULL), 0); in run_test_threads() 206 TEST_ASSERT_EQUAL("misfired signal?", ctx.signal_count, 0); in run_stress_test() 207 TEST_ASSERT_EQUAL("enable failed", ioctl(fd, PERF_EVENT_IOC_ENABLE, 0), 0); in run_stress_test() 209 TEST_ASSERT_EQUAL("disable failed", ioctl(fd, PERF_EVENT_IOC_DISABLE, 0), 0); in run_stress_test() 219 TEST_ASSERT_EQUAL("unexpected sigtraps", ctx.signal_count, expected_sigtraps); in run_stress_test() 221 TEST_ASSERT_EQUAL("missing signals or incorrectly delivered", ctx.tids_want_signal, 0); in run_stress_test() 224 TEST_ASSERT_EQUAL("unexpected si_perf_type", ctx.first_siginfo.si_perf_type, in run_stress_test() 226 TEST_ASSERT_EQUAL("unexpected si_perf_data", ctx.first_siginfo.si_perf_data, in run_stress_test()
|
H A D | expr.c | 26 TEST_ASSERT_EQUAL("union", (int)hashmap__size(ids1), 0); in test_ids_union() 32 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids1, strdup("foo")), 0); in test_ids_union() 33 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids1, strdup("bar")), 0); in test_ids_union() 36 TEST_ASSERT_EQUAL("union", (int)hashmap__size(ids1), 2); in test_ids_union() 41 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids2, strdup("foo")), 0); in test_ids_union() 44 TEST_ASSERT_EQUAL("union", (int)hashmap__size(ids1), 2); in test_ids_union() 49 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids2, strdup("bar")), 0); in test_ids_union() 50 TEST_ASSERT_EQUAL("ids__insert", ids__insert(ids2, strdup("baz")), 0); in test_ids_union() 53 TEST_ASSERT_EQUAL("union", (int)hashmap__size(ids1), 3); in test_ids_union() 86 TEST_ASSERT_EQUAL("ids_union", test_ids_union(), 0); in test__expr()
|
H A D | pfm.c | 75 TEST_ASSERT_EQUAL(table[i].events, in test__pfm_events() 78 TEST_ASSERT_EQUAL(table[i].events, in test__pfm_events() 160 TEST_ASSERT_EQUAL(table[i].events, in test__pfm_group() 163 TEST_ASSERT_EQUAL(table[i].events, in test__pfm_group()
|
H A D | expand-cgroup.c | 209 TEST_ASSERT_EQUAL("failed to expand default events", ret, 0); in test__expand_cgroup_events() 212 TEST_ASSERT_EQUAL("failed to expand event group", ret, 0); in test__expand_cgroup_events() 215 TEST_ASSERT_EQUAL("failed to expand event group", ret, 0); in test__expand_cgroup_events() 218 TEST_ASSERT_EQUAL("failed to expand metric events", ret, 0); in test__expand_cgroup_events()
|
H A D | tests.h | 21 #define TEST_ASSERT_EQUAL(text, val, expected) \ macro
|
H A D | cpumap.c | 181 TEST_ASSERT_EQUAL("failed to intersect map: bad nr", perf_cpu_map__nr(c), nr); in __test__cpu_map_intersect()
|