Home
last modified time | relevance | path

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

/linux-6.15/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()
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()
111 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 1 << 16 || in drm_test_rect_clip_scaled_clipped()
113 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 1 || in drm_test_rect_clip_scaled_clipped()
139 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 2 << 16 || in drm_test_rect_clip_scaled_clipped()
[all …]
/linux-6.15/lib/tests/
H A Dlist-test.c273 KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &b), in list_test_list_is_head()
275 KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &c), in list_test_list_is_head()
573 KUNIT_EXPECT_FALSE_MSG(test, in list_test_list_entry_is_head()
576 KUNIT_EXPECT_FALSE_MSG(test, in list_test_list_entry_is_head()
/linux-6.15/include/kunit/
H A Dtest.h947 KUNIT_EXPECT_FALSE_MSG(test, condition, NULL)
949 #define KUNIT_EXPECT_FALSE_MSG(test, condition, fmt, ...) \ macro