mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 16:29:03 +00:00
Fix discrepancy in logging messages (#1189)
Signed-off-by: Marco Antognini <marco.antognini@arm.com>
This commit is contained in:
@@ -385,9 +385,9 @@ int TestFunc_Double_Double_Double(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
®ion, &error);
|
®ion, &error);
|
||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -386,9 +386,9 @@ int TestFunc_Double_Double_Int(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
®ion, &error);
|
®ion, &error);
|
||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -380,8 +380,8 @@ int TestFunc_Float_Float_Int(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"gInBuffer for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -384,9 +384,9 @@ int TestFunc_Double_Double_Double_Operator(const Func *f, MTdata d,
|
|||||||
®ion, &error);
|
®ion, &error);
|
||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -377,8 +377,8 @@ int TestFunc_Float_Float_Float_Operator(const Func *f, MTdata d,
|
|||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"gInBuffer for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -364,9 +364,9 @@ int TestMacro_Int_Double_Double(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
®ion, &error);
|
®ion, &error);
|
||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -356,8 +356,8 @@ int TestMacro_Int_Float_Float(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"gInBuffer for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -232,9 +232,9 @@ int TestMacro_Int_Double(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
®ion, &error);
|
®ion, &error);
|
||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -233,8 +233,8 @@ int TestMacro_Int_Float(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"gOutBuffer for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -252,9 +252,9 @@ int TestFunc_Double_Double(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
®ion, &error);
|
®ion, &error);
|
||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -248,8 +248,8 @@ int TestFunc_Float_Float(const Func *f, MTdata d, bool relaxedMode)
|
|||||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||||
{
|
{
|
||||||
vlog_error("Error: Unable to create sub-buffer of "
|
vlog_error("Error: Unable to create sub-buffer of "
|
||||||
"gInBuffer for region {%zd, %zd}\n",
|
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||||
region.origin, region.size);
|
(int)j, region.origin, region.size);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user