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

@@ -695,9 +695,6 @@ int Test_vStoreHalf_private( cl_device_id device, f2h referenceFunc, d2h doubleR
uint64_t min_double_time[kVectorSizeCount+kStrangeVectorSizeCount] = {0};
memset( min_double_time, -1, sizeof( min_double_time ) );
vlog( "Testing vstore_half%s\n", roundName );
fflush( stdout );
bool aligned= false;
for( vectorSize = kMinVectorSize; vectorSize < kLastVectorSizeToTest; vectorSize++)
@@ -1288,22 +1285,6 @@ int Test_vStoreHalf_private( cl_device_id device, f2h referenceFunc, d2h doubleR
}
}
if( 0 == gFailCount )
{
if( gWimpyMode )
{
vlog( "\tfloat: Wimp Passed\n" );
if( gTestDouble )
vlog( "\tdouble: Wimp Passed\n" );
}
else
{
vlog( "\tfloat Passed\n" );
if( gTestDouble )
vlog( "\tdouble Passed\n" );
}
}
if( gReportTimes )
{
for( vectorSize = kMinVectorSize; vectorSize < kLastVectorSizeToTest; vectorSize++)
@@ -1358,9 +1339,6 @@ int Test_vStoreaHalf_private( cl_device_id device, f2h referenceFunc, d2h double
bool aligned = true;
vlog( "Testing vstorea_half%s\n", roundName );
fflush( stdout );
int minVectorSize = kMinVectorSize;
// There is no aligned scalar vstorea_half
if( 0 == minVectorSize )
@@ -1893,20 +1871,6 @@ int Test_vStoreaHalf_private( cl_device_id device, f2h referenceFunc, d2h double
}
}
if( gWimpyMode )
{
vlog( "\tfloat: Wimp Passed\n" );
if( gTestDouble )
vlog( "\tdouble: Wimp Passed\n" );
}
else
{
vlog( "\tfloat Passed\n" );
if( gTestDouble )
vlog( "\tdouble Passed\n" );
}
if( gReportTimes )
{
for( vectorSize = minVectorSize; vectorSize < kLastVectorSizeToTest; vectorSize++)