Skip to content

Commit

Permalink
Revert use of SKIP macro for three kernel bundle tests
Browse files Browse the repository at this point in the history
  • Loading branch information
psalz committed Jan 16, 2023
1 parent 0ac4632 commit d840227
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Expand Up @@ -36,7 +36,8 @@ class TEST_NAME : public sycl_cts::util::test_base {
for (const auto &platform : platforms) {
auto devices{platform.get_devices()};
if (devices.size() <= 1) {
SKIP("Requires at least two devices");
log.note("Platform skipped due to one device was found");
continue;
}
sycl::context ctx(devices[1]);

Expand Down
Expand Up @@ -36,7 +36,8 @@ class TEST_NAME : public sycl_cts::util::test_base {
for (const auto &platform : platforms) {
auto devices{platform.get_devices()};
if (devices.size() <= 1) {
SKIP("Requires at least two devices");
log.note("Platform skipped due to one device was found");
continue;
}
sycl::context ctx(devices[1]);

Expand Down
Expand Up @@ -36,7 +36,8 @@ class TEST_NAME : public sycl_cts::util::test_base {
for (const auto &platform : platforms) {
auto devices{platform.get_devices()};
if (devices.size() <= 1) {
SKIP("Requires at least two devices");
log.note("Platform skipped due to one device was found");
continue;
}
sycl::context ctx(devices[1]);

Expand Down

0 comments on commit d840227

Please sign in to comment.