basic: add missing newline at end of error messages (#2275)

Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
This commit is contained in:
Sven van Haastregt
2025-02-13 16:24:51 +01:00
committed by GitHub
parent 3618402c3a
commit 9f63decb9c
3 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ test_status InitCL(cl_device_id device)
} }
else else
{ {
log_error("Error while acquiring half rounding mode"); log_error("Error while acquiring half rounding mode\n");
return TEST_FAIL; return TEST_FAIL;
} }
} }

View File

@@ -1100,7 +1100,7 @@ static int check_global_initialization(cl_context context, cl_program program,
test_error_ret(status, "Failed to read buffer from device", status); test_error_ret(status, "Failed to read buffer from device", status);
if (is_init_valid == 0) if (is_init_valid == 0)
{ {
log_error("Unexpected default values were detected"); log_error("Unexpected default values were detected\n");
return 1; return 1;
} }

View File

@@ -526,7 +526,7 @@ struct TestWorkItemFnsOutOfRange
// Validate // Validate
if (!Validate(dim)) if (!Validate(dim))
{ {
log_error("Validation failed"); log_error("Validation failed\n");
return TEST_FAIL; return TEST_FAIL;
} }
} }