Skip to content

[SYCL] Disable sporadically failing unittest on Windows #7239

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions sycl/unittests/kernel-and-program/MultipleDevsCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ class MultipleDeviceCacheTest : public ::testing::Test {
// Test that program is retained for each device and each kernel is released
// once
TEST_F(MultipleDeviceCacheTest, ProgramRetain) {
// Temporarily disabled on Windows due to sporadic failures.
#ifndef _WIN32
{
std::vector<sycl::device> Devices = Plt.get_devices(info::device_type::gpu);
sycl::context Context(Devices);
Expand Down Expand Up @@ -175,4 +177,5 @@ TEST_F(MultipleDeviceCacheTest, ProgramRetain) {
// will not be removed twice for the other programs. As a result we must
// expect 2 piKernelRelease calls.
EXPECT_EQ(KernelReleaseCounter, 2) << "Expect 2 piKernelRelease calls";
#endif // _WIN32
}