Skip to content

Commit b0a521b

Browse files
[SYCL] Renable USM tests on Windows (#17206)
Along with re-enabling some of these test on DG2 ( #17205 ), many of them were disabled on Windows. They all seem to passing there and should be reenabled. #8126
1 parent 042b307 commit b0a521b

29 files changed

+1
-113
lines changed

sycl/test-e2e/USM/memops2d/copy2d_device_to_device.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::Device, Alloc::Device>(); }

sycl/test-e2e/USM/memops2d/copy2d_device_to_dhost.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::Device, Alloc::DirectHost>(); }

sycl/test-e2e/USM/memops2d/copy2d_device_to_shared.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::Device, Alloc::Shared>(); }

sycl/test-e2e/USM/memops2d/copy2d_dhost_to_device.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::DirectHost, Alloc::Device>(); }

sycl/test-e2e/USM/memops2d/copy2d_dhost_to_dhost.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
// RUN: %{build} -o %t.out
1010
// RUN: %{run} %t.out
1111

12-
// Temporarily disabled until the failure is addressed.
13-
// UNSUPPORTED: (level_zero && windows)
14-
1512
#include "copy2d_common.hpp"
1613

1714
int main() { return test<Alloc::DirectHost, Alloc::DirectHost>(); }

sycl/test-e2e/USM/memops2d/copy2d_dhost_to_host.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::DirectHost, Alloc::Host>(); }

sycl/test-e2e/USM/memops2d/copy2d_dhost_to_shared.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
// UNSUPPORTED: hip && linux
1714
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1815

sycl/test-e2e/USM/memops2d/copy2d_host_to_dhost.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::Host, Alloc::DirectHost>(); }

sycl/test-e2e/USM/memops2d/copy2d_host_to_host.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
#include "copy2d_common.hpp"
1714

1815
int main() { return test<Alloc::Host, Alloc::Host>(); }

sycl/test-e2e/USM/memops2d/copy2d_host_to_shared.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// Temporarily disabled until the failure is addressed.
14-
// UNSUPPORTED: (level_zero && windows)
15-
1613
// UNSUPPORTED: hip && linux
1714
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1815

0 commit comments

Comments
 (0)