Searched refs:__test__cpu_map_merge (Results 1 – 1 of 1) sorted by relevance
/linux-6.14.4/tools/perf/tests/ |
D | cpumap.c | 159 static int __test__cpu_map_merge(const char *lhs, const char *rhs, int nr, const char *expected) in __test__cpu_map_merge() function 188 ret = __test__cpu_map_merge("4,2,1", "4,5,7", 5, "1-2,4-5,7"); in test__cpu_map_merge() 191 ret = __test__cpu_map_merge("1-8", "6-9", 9, "1-9"); in test__cpu_map_merge() 194 ret = __test__cpu_map_merge("1-8,12-20", "6-9,15", 18, "1-9,12-20"); in test__cpu_map_merge() 197 ret = __test__cpu_map_merge("4,2,1", "1", 3, "1-2,4"); in test__cpu_map_merge() 200 ret = __test__cpu_map_merge("1", "4,2,1", 3, "1-2,4"); in test__cpu_map_merge() 203 ret = __test__cpu_map_merge("1", "1", 1, "1"); in test__cpu_map_merge()
|