diff --git a/sycl/test-e2e/Basic/stream/a.out b/sycl/test-e2e/Basic/stream/a.out deleted file mode 100755 index 81a1a07dc904e..0000000000000 Binary files a/sycl/test-e2e/Basic/stream/a.out and /dev/null differ diff --git a/sycl/test-e2e/Basic/stream/release_resources_test.cpp b/sycl/test-e2e/Basic/stream/release_resources_test.cpp index a6b733d0d62b0..7b6f96059cddc 100644 --- a/sycl/test-e2e/Basic/stream/release_resources_test.cpp +++ b/sycl/test-e2e/Basic/stream/release_resources_test.cpp @@ -1,4 +1,5 @@ -// Disable temporarily because of the flaky failure. +// We can't safely release any resoureces on Windows, so the test is expected +// to fail there. See comments in GlobalHandler::releaseDefaultContexts // UNSUPPORTED: windows // RUN: %{build} -o %t.out // RUN: env SYCL_PI_TRACE=2 %{run} %t.out | FileCheck %s diff --git a/sycl/test-e2e/Basic/stream/stream.cpp b/sycl/test-e2e/Basic/stream/stream.cpp index 90f3198b9aa70..e1e305cca669b 100644 --- a/sycl/test-e2e/Basic/stream/stream.cpp +++ b/sycl/test-e2e/Basic/stream/stream.cpp @@ -10,11 +10,10 @@ // //===----------------------------------------------------------------------===// -#define SYCL_SIMPLE_SWIZZLES -#include -#include #include +#include + using namespace sycl; int main() { @@ -189,8 +188,8 @@ int main() { // CHECK-NEXT: 542.3, 645.3, 771.6, 1024.2 // Swizzles - Out << f4.xyzw() << endl; - // CHECK-NEXT: 542325, 645, 771, 1024 + Out << f4.odd() << endl; + // CHECK-NEXT: 645, 1024 // SYCL types Out << id<1>(23) << endl;