mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 00:09:02 +00:00
fix error message in work_item_functions_out_of_range (#2303)
The value printed in the error message is not the correct one (used in the comparison statement)
This commit is contained in:
@@ -439,7 +439,7 @@ struct TestWorkItemFnsOutOfRange
|
|||||||
"ERROR: get_enqueued_local_size(%d) did not return "
|
"ERROR: get_enqueued_local_size(%d) did not return "
|
||||||
"proper value for the argument out of range "
|
"proper value for the argument out of range "
|
||||||
"(expected 1, got %d)\n",
|
"(expected 1, got %d)\n",
|
||||||
(int)dim, (int)testData[q].globalSize);
|
(int)dim, (int)testData[q].enqueuedLocalSize);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user