Skip to content

Commit c357af1

Browse files
authored
[SYCL][ROCm] Skip new unsupported test from ROCm testing (#4389)
This was introduced in #4350 and just like the CUDA plugin it is also not supported by the ROCm plugin.
1 parent 8075463 commit c357af1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sycl/unittests/SYCL2020/KernelBundle.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ TEST(KernelBundle, KernelBundleAndItsDevImageStateConsistency) {
109109
return;
110110
}
111111

112+
if (Plt.get_backend() == sycl::backend::rocm) {
113+
std::cout << "Test is not supported on ROCm platform, skipping\n";
114+
return;
115+
}
116+
112117
sycl::unittest::PiMock Mock{Plt};
113118
setupDefaultMockAPIs(Mock);
114119

0 commit comments

Comments
 (0)