Home
last modified time | relevance | path

Searched refs:__test (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.6/tools/testing/selftests/bpf/map_tests/
Dmap_percpu_stats.c265 static void __test(int map_fd) in __test() function
384 __test(create_hash()); in map_percpu_stats_hash()
390 __test(create_percpu_hash()); in map_percpu_stats_percpu_hash()
396 __test(create_hash_prealloc()); in map_percpu_stats_hash_prealloc()
402 __test(create_percpu_hash_prealloc()); in map_percpu_stats_percpu_hash_prealloc()
408 __test(create_lru_hash(BPF_MAP_TYPE_LRU_HASH, 0)); in map_percpu_stats_lru_hash()
414 __test(create_lru_hash(BPF_MAP_TYPE_LRU_HASH, BPF_F_NO_COMMON_LRU)); in map_percpu_stats_lru_hash_no_common()
420 __test(create_lru_hash(BPF_MAP_TYPE_LRU_PERCPU_HASH, 0)); in map_percpu_stats_percpu_lru_hash()
426 __test(create_lru_hash(BPF_MAP_TYPE_LRU_PERCPU_HASH, BPF_F_NO_COMMON_LRU)); in map_percpu_stats_percpu_lru_hash_no_common()
432 __test(create_hash_of_maps()); in map_percpu_stats_hash_of_maps()
/Linux-v6.6/lib/
Dtest_printf.c106 __test(const char *expect, int elen, const char *fmt, ...) in __test() function
147 __test(expect, strlen(expect), fmt, ##__VA_ARGS__)
158 __test("xxx\0yyy", 7, "xxx%cyyy", '\0'); in test_basic()