From 253544f7a376d02d306a111019ef102a79acc4f3 Mon Sep 17 00:00:00 2001 From: Micah Fedke Date: Thu, 13 Aug 2015 13:59:23 +0000 Subject: [PATCH] tests: update core_get_client_auth to run on any platform Signed-off-by: Micah Fedke Signed-off-by: Thomas Wood --- tests/core_get_client_auth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/core_get_client_auth.c b/tests/core_get_client_auth.c index 85479c8c..50e87fac 100644 --- a/tests/core_get_client_auth.c +++ b/tests/core_get_client_auth.c @@ -83,7 +83,7 @@ igt_main { /* root (which we run igt as) should always be authenticated */ igt_subtest("simple") { - int fd = drm_open_driver(DRIVER_INTEL); + int fd = drm_open_driver(DRIVER_ANY); igt_assert(check_auth(fd) == true); @@ -91,8 +91,8 @@ igt_main } igt_subtest("master-drop") { - int fd = drm_open_driver(DRIVER_INTEL); - int fd2 = drm_open_driver(DRIVER_INTEL); + int fd = drm_open_driver(DRIVER_ANY); + int fd2 = drm_open_driver(DRIVER_ANY); igt_assert(check_auth(fd2) == true);