From 86900e3cf647e255728f34a43c2c205d5902dd4e Mon Sep 17 00:00:00 2001 From: Lionel Landwerlin Date: Thu, 28 Mar 2024 18:15:20 +0200 Subject: [PATCH] isl/tests: add a space in memcpy test error printouts Signed-off-by: Lionel Landwerlin Reviewed-by: Nanley Chery Part-of: --- src/intel/isl/tests/isl_tilememcpy_tiled_unittest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/intel/isl/tests/isl_tilememcpy_tiled_unittest.cpp b/src/intel/isl/tests/isl_tilememcpy_tiled_unittest.cpp index faf401533cd..746bb207d30 100644 --- a/src/intel/isl/tests/isl_tilememcpy_tiled_unittest.cpp +++ b/src/intel/isl/tests/isl_tilememcpy_tiled_unittest.cpp @@ -243,20 +243,20 @@ void tileTFixture::compare_conv_result(uint8_t x1, uint8_t x2, if (x < x1 || x > x2 || y < y1 || y > y2) { if (conv == LIN_TO_TILE) { EXPECT_EQ(*(buf_src + LIN_OFF(y, tile_width, x)), 0xcc) - << "Not matching for x:" << x << "and y:" << y << std::endl; + << "Not matching for x:" << x << " and y:" << y << std::endl; } else { EXPECT_EQ(*(buf_dst + LIN_OFF(y, tile_width, x)), 0xcc) - << "Not matching for x:" << x << "and y:" << y << std::endl; + << "Not matching for x:" << x << " and y:" << y << std::endl; } } else { if (conv == LIN_TO_TILE) { EXPECT_EQ(*(buf_src + LIN_OFF(y, tile_width, x)), *(ops.linear_to_tile_swizzle(buf_dst, x, y))) - << "Not matching for x:" << x << "and y:" << y << std::endl; + << "Not matching for x:" << x << " and y:" << y << std::endl; } else { EXPECT_EQ(*(buf_dst + LIN_OFF(y, tile_width, x)), *(ops.linear_to_tile_swizzle(buf_src, x, y))) - << "Not matching for x:" << x << "and y:" << y << std::endl; + << "Not matching for x:" << x << " and y:" << y << std::endl; } } }