diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-11-04 17:24:55 +0100 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-11-04 17:25:33 +0100 |
commit | 83757d7b393e61502fdf331f8239da8acc34213c (patch) | |
tree | 49f6256758c6569653b0b6eaa6f308c8c15a542b | |
parent | fbc673023803b197453af3c7b985c941f654a8fb (diff) |
tests/prime_nv_test: Skip cpu mmap testcase
It's not implemented yet, so no point in running the test really.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=68638
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
-rw-r--r-- | tests/prime_nv_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/prime_nv_test.c b/tests/prime_nv_test.c index 8211cd6f..dc9287ca 100644 --- a/tests/prime_nv_test.c +++ b/tests/prime_nv_test.c @@ -201,6 +201,8 @@ static void test_i915_import_cpu_mmap(void) struct nouveau_bo *nvbo; uint32_t *ptr; + igt_skip("cpu mmap support for imported dma-bufs not yet implemented\n"); + igt_assert(nouveau_bo_new(ndev, NOUVEAU_BO_GART | NOUVEAU_BO_MAP, 0, BO_SIZE, NULL, &nvbo) == 0); igt_assert(nouveau_bo_set_prime(nvbo, &prime_fd) == 0); |