Fix - add TEST_PASS test status in group of tests (#686)

This commit is contained in:
Grzegorz Wawiorko
2020-03-18 16:35:34 +01:00
committed by GitHub
parent cba5a191c3
commit 0c5da9c777
3 changed files with 3 additions and 0 deletions

View File

@@ -113,6 +113,7 @@ test_status InitCL(cl_device_id device) {
version_expected_info("Test", expected_min_version.to_string().c_str(), version.to_string().c_str());
return TEST_SKIP;
}
return TEST_PASS;
}
int main(int argc, const char *argv[])