From de5fb11111a877551a7aa801e6547ee1a33de873 Mon Sep 17 00:00:00 2001 From: Robert Mader Date: Thu, 12 Mar 2026 15:09:10 +0100 Subject: [PATCH] Revert "tests: Return RESULT_OK for color-representation-drm-test" This reverts commit 4b8e10cf66b4d724cbf4ca6bfcd8d14fdbd26189. Signed-off-by: Robert Mader --- tests/color-representation-drm-test.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tests/color-representation-drm-test.c b/tests/color-representation-drm-test.c index 7e034e01e..28a3cba58 100644 --- a/tests/color-representation-drm-test.c +++ b/tests/color-representation-drm-test.c @@ -66,15 +66,9 @@ fixture_setup(struct weston_test_harness *harness, const struct setup_args *arg) DECLARE_FIXTURE_SETUP_WITH_ARG(fixture_setup, my_setup_args, meta); TEST_P(color_representation_drm, color_state_cases) { - -#if 0 const struct color_state *color_state = data; const struct setup_args *args = &my_setup_args[get_test_fixture_index()]; - /* FIXME: this fails transiently/sporadically in CI with a Mesa crash: - * test-color-representation-drm: ../src/gallium/drivers/llvmpipe/lp_scene.c:180: init_scene_texture: Assertion `ssurf->map' failed. */ - return test_color_representation(color_state, args->buffer_type, + return test_color_representation(color_state, args->buffer_type, FB_PRESENTED_ZERO_COPY); -#endif - return RESULT_OK; }