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

@@ -73,8 +73,6 @@ int Test_vLoadHalf_private( cl_device_id device, bool aligned )
memset( min_time, -1, sizeof( min_time ) );
vlog( "Testing vload%s_half\n", aligned ? "a" : "" );
fflush( stdout );
const char *vector_size_names[] = {"1", "2", "4", "8", "16", "3"};
int minVectorSize = kMinVectorSize;
@@ -590,7 +588,7 @@ int Test_vLoadHalf_private( cl_device_id device, bool aligned )
}
}
vlog( "\tPassed\n" );
vlog( "\n" );
if( gReportTimes )
{