mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Remove redundant prints from integer_ops (#425)
The test harness already prints if the test passed, no need to duplicate this information. Signed-off-by: Radek Szymanski <radek.szymanski@arm.com>
This commit is contained in:
committed by
Kévin Petit
parent
a45012be7a
commit
313fb94fcc
@@ -324,7 +324,6 @@ int test_integer_abs(cl_device_id device, cl_context context, cl_command_queue q
|
||||
log_info("Failed on %d types\n", fail_count);
|
||||
return -1;
|
||||
}
|
||||
log_info("ABS test passed\n");
|
||||
|
||||
free(input_ptr);
|
||||
free(output_ptr);
|
||||
|
||||
@@ -362,7 +362,6 @@ int test_integer_abs_diff(cl_device_id device, cl_context context, cl_command_qu
|
||||
log_info("Failed on %d types\n", fail_count);
|
||||
return -1;
|
||||
}
|
||||
log_info("ABS_DIFF test passed\n");
|
||||
|
||||
free(input_ptr[0]);
|
||||
free(input_ptr[1]);
|
||||
|
||||
@@ -366,8 +366,6 @@ int test_integer_add_sat(cl_device_id device, cl_context context, cl_command_que
|
||||
return -1;
|
||||
}
|
||||
|
||||
log_info("ADD_SAT test passed\n");
|
||||
|
||||
free(input_ptr[0]);
|
||||
free(input_ptr[1]);
|
||||
free(output_ptr);
|
||||
|
||||
@@ -237,7 +237,6 @@ int test_popcount(cl_device_id device, cl_context context, cl_command_queue queu
|
||||
log_info("Failed on %d types\n", fail_count);
|
||||
return -1;
|
||||
}
|
||||
log_info("popcount test passed\n");
|
||||
|
||||
free(input_ptr[0]);
|
||||
free(output_ptr);
|
||||
|
||||
@@ -364,7 +364,6 @@ int test_integer_sub_sat(cl_device_id device, cl_context context, cl_command_que
|
||||
log_info("Failed on %d types\n", fail_count);
|
||||
return -1;
|
||||
}
|
||||
log_info("SUB_SAT test passed\n");
|
||||
|
||||
free(input_ptr[0]);
|
||||
free(input_ptr[1]);
|
||||
|
||||
Reference in New Issue
Block a user