Remove redundant prints from half (#424)

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:
Radek Szymanski
2019-08-05 15:17:09 +01:00
committed by Kévin Petit
parent 03650057bb
commit 42cc707131
3 changed files with 2 additions and 44 deletions

View File

@@ -33,10 +33,6 @@ int test_roundTrip( cl_device_id device, cl_context context, cl_command_queue qu
memset( min_time, -1, sizeof( min_time ) );
memset( min_double_time, -1, sizeof( min_double_time ) );
vlog( "Testing roundTrip\n" );
fflush( stdout );
for( vectorSize = kMinVectorSize; vectorSize < kLastVectorSizeToTest; vectorSize++)
{
const char *source[] = {
@@ -300,7 +296,7 @@ int test_roundTrip( cl_device_id device, cl_context context, cl_command_queue qu
}
}
vlog( "\tPassed\n" );
vlog( "\n" );
loopCount = 100;
if( gReportTimes )