Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/gpu/drm/tests/
Ddrm_rect_test.c54 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
55 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
68 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
69 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
82 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
83 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_not_clipped()
102 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
103 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
116 KUNIT_EXPECT_TRUE_MSG(test, visible, "Destination should be visible\n"); in drm_test_rect_clip_scaled_clipped()
117 KUNIT_EXPECT_TRUE_MSG(test, drm_rect_visible(&src), "Source should be visible\n"); in drm_test_rect_clip_scaled_clipped()
[all …]
Ddrm_plane_helper_test.c134 KUNIT_EXPECT_TRUE_MSG(test, ret, in drm_test_check_plane_state()
153 KUNIT_EXPECT_TRUE_MSG(test, ret, "Upscaling out of range should fail.\n"); in drm_test_check_plane_state()
167 KUNIT_EXPECT_TRUE_MSG(test, ret, "Downscaling out of range should fail.\n"); in drm_test_check_plane_state()
/Linux-v6.1/lib/
Dcpumask_kunit.c74 KUNIT_EXPECT_TRUE_MSG(test, cpumask_empty(&mask_empty), MASK_MSG(&mask_empty)); in test_cpumask_weight()
75 KUNIT_EXPECT_TRUE_MSG(test, cpumask_full(&mask_all), MASK_MSG(&mask_all)); in test_cpumask_weight()
Dlist-test.c266 KUNIT_EXPECT_TRUE_MSG(test, list_is_head(&a, &a), in list_test_list_is_head()
561 KUNIT_EXPECT_TRUE_MSG(test, in list_test_list_entry_is_head()
/Linux-v6.1/include/kunit/
Dtest.h693 KUNIT_EXPECT_TRUE_MSG(test, condition, NULL)
695 #define KUNIT_EXPECT_TRUE_MSG(test, condition, fmt, ...) \ macro