summaryrefslogtreecommitdiff
path: root/tests/prime_nv_test.c
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2014-03-13 02:38:04 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2014-03-13 18:07:22 +0100
commit32d41cc7a7fc357758a60f019341805ae1ee418d (patch)
treec9f35157e4aedd63772c2a34e193c17e9fb586cc /tests/prime_nv_test.c
parentec5f9e87882257fdde39166f0f4b931ecb5b6009 (diff)
tests/prime_nv_tests: fix copied buffer size
Doesn't affect the test since we only check the first few bytes. But I want to switch the copy code to always copy entire pages around, so use the right buffer size. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'tests/prime_nv_test.c')
-rw-r--r--tests/prime_nv_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/prime_nv_test.c b/tests/prime_nv_test.c
index 18a13a0e..8a635402 100644
--- a/tests/prime_nv_test.c
+++ b/tests/prime_nv_test.c
@@ -336,7 +336,7 @@ static void test_i915_blt_fill_nv_read(void)
igt_assert(nouveau_bo_prime_handle_ref(ndev, prime_fd, &nvbo) == 0);
close(prime_fd);
- intel_copy_bo(intel_batch, test_intel_bo, src_bo, 256, 1);
+ intel_copy_bo(intel_batch, test_intel_bo, src_bo, 256, 1024/4);
igt_assert(nouveau_bo_map(nvbo, NOUVEAU_BO_RDWR, nclient) == 0);