Skip to content

Commit 1519089

Browse files
authored
[SYCL][ESIMD] Reenable addc and subb tests (#15019)
This PR to reenable tests that were disabled on Windows as hanging but were not reproducible otherwise Closes: #14868
1 parent eabbb15 commit 1519089

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

sycl/test-e2e/ESIMD/addc.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88
// RUN: %{build} -o %t.out
99
// RUN: %{run} %t.out
10-
// https://github.com/intel/llvm/issues/14868
11-
// UNSUPPORTED: windows
1210

1311
// The test verifies ESIMD API that adds 2 32-bit integer scalars/vectors with
1412
// carry returning the result as 2 parts: carry flag the input modified operand
@@ -94,7 +92,7 @@ template <int N, bool AIsVector, bool BIsVector> bool test(sycl::queue Q) {
9492
}
9593

9694
} // end for BI
97-
} // end for AI
95+
} // end for AI
9896
}).wait();
9997
} catch (sycl::exception const &e) {
10098
std::cout << "SYCL exception caught: " << e.what() << '\n';

sycl/test-e2e/ESIMD/subb.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
//===----------------------------------------------------------------------===//
88
// RUN: %{build} -o %t.out
99
// RUN: %{run} %t.out
10-
// https://github.com/intel/llvm/issues/14868
11-
// UNSUPPORTED: windows
1210

1311
// The test verifies ESIMD API that substracts 2 32-bit integer scalars/vectors
1412
// with borrow returning the result as 2 parts: borrow flag the input modified
@@ -95,7 +93,7 @@ template <int N, bool AIsVector, bool BIsVector> bool test(sycl::queue Q) {
9593
}
9694

9795
} // end for BI
98-
} // end for AI
96+
} // end for AI
9997
}).wait();
10098
} catch (sycl::exception const &e) {
10199
std::cout << "SYCL exception caught: " << e.what() << '\n';

0 commit comments

Comments
 (0)