summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-12-01 21:53:48 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-12-01 23:10:12 +0000
commit8bb6135fa50c81abe77b80cf08fc8b45445160e3 (patch)
tree1153b785de2c3e975a129aa9044ec0ea97304269 /tests
parent7a06e13ba1e3b2ac79699e835fde9652eac6f71f (diff)
igt: Add kselftest runner for i915
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.sources1
-rw-r--r--tests/drm_mm.c2
-rw-r--r--tests/drv_selftest.c32
3 files changed, 34 insertions, 1 deletions
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 57a10c5f..9fcb93c1 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -15,6 +15,7 @@ TESTS_progs_M = \
core_get_client_auth \
drm_mm \
drv_getparams_basic \
+ drv_selftest \
drv_suspend \
drv_hangman \
gem_bad_reloc \
diff --git a/tests/drm_mm.c b/tests/drm_mm.c
index dbd0cc28..52a0159f 100644
--- a/tests/drm_mm.c
+++ b/tests/drm_mm.c
@@ -28,5 +28,5 @@ IGT_TEST_DESCRIPTION("Basic sanity check of DRM's range manager (struct drm_mm)"
igt_main
{
- igt_kselftests("test-drm_mm");
+ igt_kselftests("test-drm_mm", NULL);
}
diff --git a/tests/drv_selftest.c b/tests/drv_selftest.c
new file mode 100644
index 00000000..71c4c3d3
--- /dev/null
+++ b/tests/drv_selftest.c
@@ -0,0 +1,32 @@
+/*
+ * Copyright © 2016 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include "igt.h"
+#include "igt_kmod.h"
+
+IGT_TEST_DESCRIPTION("Basic unit tests for i915.ko");
+
+igt_main
+{
+ igt_kselftests("i915", "selftest=-1");
+}