From 328f98e7a693713cbc8648b2bdb2074c407db198 Mon Sep 17 00:00:00 2001 From: Zhigang Gong Date: Wed, 15 May 2013 18:15:34 +0800 Subject: [PATCH] utests: Fix a bug in movforphi test case. This test case is to trigger a old MovForPHI bug, and it just use read/write_image. But it has a bug in itself. As in the kernel, the write image will only write the first lane data not all the 16 lanes. As the previous patch fix the write_image bug, thus now the write_image work correctly and thus it only touch the first data element thus it trigger the bug in this test case. Now fix it. Signed-off-by: Zhigang Gong --- utests/compiler_movforphi_undef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utests/compiler_movforphi_undef.cpp b/utests/compiler_movforphi_undef.cpp index 30e53bb..17bde8c 100644 --- a/utests/compiler_movforphi_undef.cpp +++ b/utests/compiler_movforphi_undef.cpp @@ -47,8 +47,8 @@ static void compiler_movforphi_undef(void) for (uint32_t j = 0; j < 1; ++j) for (uint32_t i = 0; i < 3; i++) { - if (i < w - 1) - OCL_ASSERT(((uint32_t*)buf_data[0])[j * w + i + 1] == ((uint32_t*)buf_data[1])[j * w + i]); + if (i == 0) + OCL_ASSERT(((uint32_t*)buf_data[0])[j * w + i + 1] == ((uint32_t*)buf_data[1])[j * w + i]); } OCL_UNMAP_BUFFER(0); OCL_UNMAP_BUFFER(1); -- 2.7.4