Searched refs:test_pmu (Results 1 – 2 of 2) sorted by relevance
/linux/tools/perf/tests/ |
H A D | pmu.c | 461 struct perf_pmu test_pmu = { in test__pmu_match() local 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() 469 test_pmu.name = "pmuname_10"; 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() 474 TEST_ASSERT_EQUAL("Underscore_", perf_pmu__match(&test_pmu, "pmuname_"), true); in test__pmu_match() [all …]
|
H A D | pmu-events.c | 593 static int __test_uncore_pmu_event_aliases(struct perf_pmu_test_pmu *test_pmu) in __test_uncore_pmu_event_aliases() argument 597 struct perf_pmu *pmu = &test_pmu->pmu; in __test_uncore_pmu_event_aliases() 615 for (table = &test_pmu->aliases[0]; *table; table++) in __test_uncore_pmu_event_aliases() 624 for (table = &test_pmu->aliases[0]; *table; table++) { in __test_uncore_pmu_event_aliases()
|