From e313dee22b8edf1429ce861e5974b09bb2ab1b68 Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Sat, 19 Oct 2013 16:21:18 +0200 Subject: [PATCH] tets/kms_flip: disable correlation check It's broken since it doesn't take the order the events arrived into account and so will fall over for longer seq_step values in the vblank event: Since the flip completes right away, but the vblank later on they won't have the same timestamp. For now just give up, we could resurrect this by strictly alternating between a flip and a vblank wait. Signed-off-by: Daniel Vetter --- tests/kms_flip.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/kms_flip.c b/tests/kms_flip.c index 227a176..d976069 100644 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -562,7 +562,8 @@ static void check_all_state(struct test_output *o, if (vblank) check_state(o, &o->vblank_state); - if (flip && vblank) + /* FIXME: Correlation check is broken. */ + if (flip && vblank && 0) check_state_correlation(o, &o->flip_state, &o->vblank_state); } -- 2.7.4