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

sycl/test-e2e/USM/memops2d/copy2d_shared_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::Shared, Alloc::Device>(); }

sycl/test-e2e/USM/memops2d/copy2d_shared_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
// UNSUPPORTED: hip && linux
1714
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1815

sycl/test-e2e/USM/memops2d/copy2d_shared_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
// UNSUPPORTED: hip && linux
1714
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1815

sycl/test-e2e/USM/memops2d/copy2d_shared_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::Shared, Alloc::Shared>(); }

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1613

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

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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 "memcpy2d_common.hpp"
1714

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

sycl/test-e2e/USM/memops2d/memcpy2d_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

sycl/test-e2e/USM/memops2d/memcpy2d_shared_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 "memcpy2d_common.hpp"
1714

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

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
// UNSUPPORTED: hip && linux
1414
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1515

16-
// Temporarily disabled until the failure is addressed.
17-
// UNSUPPORTED: (level_zero && windows)
18-
1916
#include "memcpy2d_common.hpp"
2017

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

sycl/test-e2e/USM/memops2d/memcpy2d_shared_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
// UNSUPPORTED: hip && linux
1714
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/15648
1815

sycl/test-e2e/USM/memops2d/memcpy2d_shared_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 "memcpy2d_common.hpp"
1714

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

sycl/test/e2e_test_requirements/no-unsupported-without-info.cpp

Lines changed: 1 addition & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
// tests to match the required format and in that case you should just update
5555
// (i.e. reduce) the number and the list below.
5656
//
57-
// NUMBER-OF-UNSUPPORTED-WITHOUT-INFO: 341
57+
// NUMBER-OF-UNSUPPORTED-WITHOUT-INFO: 313
5858
//
5959
// List of improperly UNSUPPORTED tests.
6060
// Remove the CHECK once the test has been properly UNSUPPORTED.
@@ -360,38 +360,10 @@
360360
// CHECK-NEXT: Tracing/usm/queue_single_task_released_pointer.cpp
361361
// CHECK-NEXT: USM/badmalloc.cpp
362362
// CHECK-NEXT: USM/free_during_kernel_execution.cpp
363-
// CHECK-NEXT: USM/memops2d/copy2d_device_to_device.cpp
364-
// CHECK-NEXT: USM/memops2d/copy2d_device_to_dhost.cpp
365363
// CHECK-NEXT: USM/memops2d/copy2d_device_to_host.cpp
366-
// CHECK-NEXT: USM/memops2d/copy2d_device_to_shared.cpp
367-
// CHECK-NEXT: USM/memops2d/copy2d_dhost_to_device.cpp
368-
// CHECK-NEXT: USM/memops2d/copy2d_dhost_to_dhost.cpp
369-
// CHECK-NEXT: USM/memops2d/copy2d_dhost_to_host.cpp
370-
// CHECK-NEXT: USM/memops2d/copy2d_dhost_to_shared.cpp
371364
// CHECK-NEXT: USM/memops2d/copy2d_host_to_device.cpp
372-
// CHECK-NEXT: USM/memops2d/copy2d_host_to_dhost.cpp
373-
// CHECK-NEXT: USM/memops2d/copy2d_host_to_host.cpp
374-
// CHECK-NEXT: USM/memops2d/copy2d_host_to_shared.cpp
375-
// CHECK-NEXT: USM/memops2d/copy2d_shared_to_device.cpp
376-
// CHECK-NEXT: USM/memops2d/copy2d_shared_to_dhost.cpp
377-
// CHECK-NEXT: USM/memops2d/copy2d_shared_to_host.cpp
378-
// CHECK-NEXT: USM/memops2d/copy2d_shared_to_shared.cpp
379-
// CHECK-NEXT: USM/memops2d/memcpy2d_device_to_device.cpp
380-
// CHECK-NEXT: USM/memops2d/memcpy2d_device_to_dhost.cpp
381365
// CHECK-NEXT: USM/memops2d/memcpy2d_device_to_host.cpp
382-
// CHECK-NEXT: USM/memops2d/memcpy2d_device_to_shared.cpp
383-
// CHECK-NEXT: USM/memops2d/memcpy2d_dhost_to_device.cpp
384-
// CHECK-NEXT: USM/memops2d/memcpy2d_dhost_to_dhost.cpp
385-
// CHECK-NEXT: USM/memops2d/memcpy2d_dhost_to_host.cpp
386-
// CHECK-NEXT: USM/memops2d/memcpy2d_dhost_to_shared.cpp
387366
// CHECK-NEXT: USM/memops2d/memcpy2d_host_to_device.cpp
388-
// CHECK-NEXT: USM/memops2d/memcpy2d_host_to_dhost.cpp
389-
// CHECK-NEXT: USM/memops2d/memcpy2d_host_to_host.cpp
390-
// CHECK-NEXT: USM/memops2d/memcpy2d_host_to_shared.cpp
391-
// CHECK-NEXT: USM/memops2d/memcpy2d_shared_to_device.cpp
392-
// CHECK-NEXT: USM/memops2d/memcpy2d_shared_to_dhost.cpp
393-
// CHECK-NEXT: USM/memops2d/memcpy2d_shared_to_host.cpp
394-
// CHECK-NEXT: USM/memops2d/memcpy2d_shared_to_shared.cpp
395367
// CHECK-NEXT: USM/pointer_query_descendent_device.cpp
396368
// CHECK-NEXT: syclcompat/atomic/atomic_arith.cpp
397369
// CHECK-NEXT: syclcompat/atomic/atomic_bitwise.cpp

0 commit comments

Comments
 (0)