From db94faede57be86e4f4dbefaf2c1ea24f44acae1 Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Thu, 4 Jul 2013 01:50:55 +0200 Subject: [PATCH] tests/kms_flip: don't run blocking relateve vblank waits with interrupts They simply take forever with the current kernel implementation. And since everyone switched over to the event based interface I don't see much incentive to try to fix that. So just disable them. Signed-off-by: Daniel Vetter --- tests/kms_flip.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/kms_flip.c b/tests/kms_flip.c index 3585876..e1f2864 100644 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -1195,6 +1195,13 @@ int main(int argc, char **argv) for (i = 0; i < sizeof(tests) / sizeof (tests[0]); i++) { char name[160]; snprintf(name, sizeof(name), "%s-interruptible", tests[i].name); + + /* relative blocking vblank waits that get constantly interrupt + * take forver. So don't do them. */ + if ((tests[i].flags & TEST_VBLANK_BLOCK) && + !(tests[i].flags & TEST_VBLANK_ABSOLUTE)) + continue; + if (drmtest_run_subtest(name)) { printf("running testcase: %s\n", name); run_test(tests[i].duration, tests[i].flags, name); -- 2.7.4