isl/tests: add a space in memcpy test error printouts

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31469>
This commit is contained in:
Lionel Landwerlin
2024-03-28 18:15:20 +02:00
committed by Marge Bot
parent b2b654d851
commit 86900e3cf6
@@ -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;
}
}
}