mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-21 23:09:01 +00:00
Fix warnings treated as errors in Vulkan tests. (#2461)
Unused variables and mismatched sign comparisons. Signed-off-by: Ahmed Hesham <ahmed.hesham@arm.com>
This commit is contained in:
@@ -50,7 +50,7 @@ static void printUsage(const char *execName)
|
||||
|
||||
log_info("Usage: %s [test_names] [options]\n", execName);
|
||||
log_info("Test names:\n");
|
||||
for (int i = 0; i < test_registry::getInstance().num_tests(); i++)
|
||||
for (unsigned int i = 0; i < test_registry::getInstance().num_tests(); i++)
|
||||
{
|
||||
log_info("\t%s\n", test_registry::getInstance().definitions()[i].name);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user