summaryrefslogtreecommitdiff
path: root/tests/kms_flip.c
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2015-12-14 00:54:33 +0200
committerVille Syrjälä <ville.syrjala@linux.intel.com>2016-01-08 19:59:10 +0200
commitf1bb20eb7c4fa5f8b98bfd9876adc69c250e9bea (patch)
tree5060b2c1b2517026210fdb361a0b0ae35e5e5b8d /tests/kms_flip.c
parent39aecb05d5c608cb7916fe376341de1828945167 (diff)
tests/kms_flip: Increase TEST_TS_CONT max seq difference to 150
During suspend tests we can exceed the current 100 frame difference in sequence numbers. Bump the limit to 150 frames. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Diffstat (limited to 'tests/kms_flip.c')
-rw-r--r--tests/kms_flip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 750a1882..0dae8304 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -674,9 +674,9 @@ static void check_state(struct test_output *o, struct event_state *es)
igt_assert_f(es->current_seq - es->last_seq >= 0,
"unexpected %s seq %u, should be >= %u\n",
es->name, es->current_seq, es->last_seq);
- igt_assert_f(es->current_seq - es->last_seq <= 100,
+ igt_assert_f(es->current_seq - es->last_seq <= 150,
"unexpected %s seq %u, should be < %u\n",
- es->name, es->current_seq, es->last_seq + 100);
+ es->name, es->current_seq, es->last_seq + 150);
igt_debug("testing ts continuity: Current frame %u, old frame %u\n",
es->current_seq, es->last_seq);