From 2a71bff3173c538d618f5fc6f45b7150fc10f3fb Mon Sep 17 00:00:00 2001 From: Paulo Zanoni Date: Mon, 16 Dec 2013 18:47:39 -0200 Subject: [PATCH] tests/pm_pc8: check if we can't become DRM master QA reported a failure that I believe happened because we couldn't become DRM master, so add code that checks for this and prints a nice error message. Signed-off-by: Paulo Zanoni --- tests/pm_pc8.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/pm_pc8.c b/tests/pm_pc8.c index 1f6d038..d6b68e4 100644 --- a/tests/pm_pc8.c +++ b/tests/pm_pc8.c @@ -751,6 +751,9 @@ static void setup_environment(void) drm_fd = drm_open_any(); igt_assert(drm_fd >= 0); + igt_require_f(drmSetMaster(drm_fd) == 0, "Can't become DRM master, " + "please check if no other DRM client is running.\n"); + init_mode_set_data(&ms_data); setup_non_graphics_runtime_pm(); -- 2.7.4