From: Paulo Zanoni <[email protected]> When I look at BSpec, and at cursor_size_ok() (from the Kernel's intel_display.c), I see that only 845g and i865g support non-square displays, so SKIP the tests on HSW/BDW instead of failing them.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84268 Cc: Ville Syrjälä <[email protected]> Signed-off-by: Paulo Zanoni <[email protected]> --- tests/kms_cursor_crc.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c index 92d1ce6..87b4f64 100644 --- a/tests/kms_cursor_crc.c +++ b/tests/kms_cursor_crc.c @@ -371,10 +371,7 @@ static bool has_nonsquare_cursors(uint32_t devid) * Test non-square cursors a bit on the platforms * that support such things. */ - return devid == PCI_CHIP_845_G || - devid == PCI_CHIP_I865_G || - (IS_GEN7(devid) && !IS_VALLEYVIEW(devid)) || - (IS_GEN8(devid) && !IS_CHERRYVIEW(devid)); + return devid == PCI_CHIP_845_G || devid == PCI_CHIP_I865_G; } static void test_cursor_size(data_t *data) -- 1.9.1 _______________________________________________ Intel-gfx mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/intel-gfx
