Home
last modified time | relevance | path

Searched refs:KUNIT_EXPECT_FALSE_MSG (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/gpu/drm/tests/
H A Ddrm_rect_test.c39 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
40 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
47 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
48 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
63 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 1 << 16 || in drm_test_rect_clip_scaled_not_clipped()
65 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 1 || in drm_test_rect_clip_scaled_not_clipped()
77 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 2 << 16 || in drm_test_rect_clip_scaled_not_clipped()
79 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 1 || in drm_test_rect_clip_scaled_not_clipped()
91 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 1 << 16 || in drm_test_rect_clip_scaled_not_clipped()
93 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 2 || in drm_test_rect_clip_scaled_not_clipped()
[all …]
H A Ddrm_buddy_test.c482 KUNIT_EXPECT_FALSE_MSG(test, check_mm(test, &mm), in drm_test_buddy_alloc_smoke()
690 KUNIT_EXPECT_FALSE_MSG(test, check_mm(test, &mm), "post-mm check failed\n"); in drm_test_buddy_alloc_range()
/openbmc/linux/lib/
H A Dlist-test.c269 KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &b), in list_test_list_is_head()
271 KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &c), in list_test_list_is_head()
565 KUNIT_EXPECT_FALSE_MSG(test, in list_test_list_entry_is_head()
568 KUNIT_EXPECT_FALSE_MSG(test, in list_test_list_entry_is_head()
/openbmc/linux/include/kunit/
H A Dtest.h854 KUNIT_EXPECT_FALSE_MSG(test, condition, NULL)
856 #define KUNIT_EXPECT_FALSE_MSG(test, condition, fmt, ...) \ macro