Skip to content
Merged
Show file tree
Hide file tree
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
Binary file removed sycl/test-e2e/Basic/stream/a.out
Binary file not shown.
3 changes: 2 additions & 1 deletion sycl/test-e2e/Basic/stream/release_resources_test.cpp
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 4 additions & 5 deletions sycl/test-e2e/Basic/stream/stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@
//
//===----------------------------------------------------------------------===//

#define SYCL_SIMPLE_SWIZZLES
#include <cassert>
#include <sycl/context.hpp>
#include <sycl/sycl.hpp>

#include <cassert>

using namespace sycl;

int main() {
Expand Down Expand Up @@ -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;
Expand Down