graphics_LibDRM.py: Support qualcomm platforms

Run kmstests like we do on other ARM platforms.

BUG=None
TEST=test_that $DUT graphics_LibDRM passes on Lazor

Change-Id: I8d7a993a64070ee795836218bdf12916248d5dc8
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2495736
Tested-by: Stephen Boyd <swboyd@chromium.org>
Reviewed-by: Rob Clark <robdclark@chromium.org>
Commit-Queue: Stephen Boyd <swboyd@chromium.org>
diff --git a/client/site_tests/graphics_LibDRM/graphics_LibDRM.py b/client/site_tests/graphics_LibDRM/graphics_LibDRM.py
index 8c8083b..49077ec 100644
--- a/client/site_tests/graphics_LibDRM/graphics_LibDRM.py
+++ b/client/site_tests/graphics_LibDRM/graphics_LibDRM.py
@@ -30,6 +30,7 @@
         # Determine which tests to run based on the architecture type.
         tests_exynos5 = ['kmstest']
         tests_mediatek = ['kmstest']
+        tests_qualcomm = ['kmstest']
         tests_rockchip = ['kmstest']
         arch_tests = {
             'amd': [],
@@ -37,6 +38,7 @@
             'exynos5': tests_exynos5,
             'i386': [],
             'mediatek': tests_mediatek,
+            'qualcomm': tests_qualcomm,
             'rockchip': tests_rockchip,
             'tegra': [],
             'x86_64': []