Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/gpu/drm/tests/
Ddrm_rect_test.c26 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
27 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
34 KUNIT_EXPECT_FALSE_MSG(test, visible, "Destination not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
35 KUNIT_EXPECT_FALSE_MSG(test, drm_rect_visible(&src), "Source should not be visible\n"); in drm_test_rect_clip_scaled_div_by_zero()
50 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 1 << 16 || in drm_test_rect_clip_scaled_not_clipped()
52 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 1 || in drm_test_rect_clip_scaled_not_clipped()
64 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 2 << 16 || in drm_test_rect_clip_scaled_not_clipped()
66 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 1 || in drm_test_rect_clip_scaled_not_clipped()
78 KUNIT_EXPECT_FALSE_MSG(test, src.x1 != 0 || src.x2 != 1 << 16 || in drm_test_rect_clip_scaled_not_clipped()
80 KUNIT_EXPECT_FALSE_MSG(test, dst.x1 != 0 || dst.x2 != 2 || in drm_test_rect_clip_scaled_not_clipped()
[all …]
Ddrm_plane_helper_test.c110 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Simple clipping check should pass\n"); in drm_test_check_plane_state()
121 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Rotated clipping check should pass\n"); in drm_test_check_plane_state()
141 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Simple positioning should work\n"); in drm_test_check_plane_state()
158 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Upscaling exactly 2x should work\n"); in drm_test_check_plane_state()
171 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Should succeed with exact scaling limit\n"); in drm_test_check_plane_state()
183 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Should succeed by clipping to exact multiple"); in drm_test_check_plane_state()
194 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Should succeed by clipping to exact multiple"); in drm_test_check_plane_state()
206 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Should succeed by clipping to exact multiple"); in drm_test_check_plane_state()
218 KUNIT_EXPECT_FALSE_MSG(test, ret, 0, "Should succeed by clipping to exact multiple"); in drm_test_check_plane_state()
Ddrm_buddy_test.c481 KUNIT_EXPECT_FALSE_MSG(test, check_mm(test, &mm), in drm_test_buddy_alloc_smoke()
689 KUNIT_EXPECT_FALSE_MSG(test, check_mm(test, &mm), "post-mm check failed\n"); in drm_test_buddy_alloc_range()
/linux-6.1.9/lib/
Dlist-test.c268 KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &b), in list_test_list_is_head()
270 KUNIT_EXPECT_FALSE_MSG(test, list_is_head(&a, &c), in list_test_list_is_head()
564 KUNIT_EXPECT_FALSE_MSG(test, in list_test_list_entry_is_head()
567 KUNIT_EXPECT_FALSE_MSG(test, in list_test_list_entry_is_head()
/linux-6.1.9/include/kunit/
Dtest.h712 KUNIT_EXPECT_FALSE_MSG(test, condition, NULL)
714 #define KUNIT_EXPECT_FALSE_MSG(test, condition, fmt, ...) \ macro