mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-20 06:29:02 +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);
|
||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
||||
"for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -386,9 +386,9 @@ int TestFunc_Double_Double_Int(const Func *f, MTdata d, bool relaxedMode)
|
||||
®ion, &error);
|
||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
||||
"for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
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])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gInBuffer for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -384,9 +384,9 @@ int TestFunc_Double_Double_Double_Operator(const Func *f, MTdata d,
|
||||
®ion, &error);
|
||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
||||
"for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
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])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gInBuffer for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -364,9 +364,9 @@ int TestMacro_Int_Double_Double(const Func *f, MTdata d, bool relaxedMode)
|
||||
®ion, &error);
|
||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
||||
"for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
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])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gInBuffer for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -232,9 +232,9 @@ int TestMacro_Int_Double(const Func *f, MTdata d, bool relaxedMode)
|
||||
®ion, &error);
|
||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
||||
"for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
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])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -252,9 +252,9 @@ int TestFunc_Double_Double(const Func *f, MTdata d, bool relaxedMode)
|
||||
®ion, &error);
|
||||
if (error || NULL == test_info.tinfo[i].outBuf[j])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of gInBuffer "
|
||||
"for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
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])
|
||||
{
|
||||
vlog_error("Error: Unable to create sub-buffer of "
|
||||
"gInBuffer for region {%zd, %zd}\n",
|
||||
region.origin, region.size);
|
||||
"gOutBuffer[%d] for region {%zd, %zd}\n",
|
||||
(int)j, region.origin, region.size);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user