Skip to content

Commit cf1dfb9

Browse files
[SYCL][NFC] Remove Filecheck from multiple-kernel-linking test
1 parent e8361f6 commit cf1dfb9

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

sycl/test-e2e/KernelAndProgram/multiple-kernel-linking.cpp

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
// RUN: %{build} -fno-sycl-early-optimizations -fsycl-device-code-split=per_source -o %t_per_source.out
66
// RUN: %{build} -fno-sycl-early-optimizations -fsycl-device-code-split=off -o %t_off.out
77
// RUN: %{build} -fno-sycl-early-optimizations -fsycl-device-code-split=auto -o %t_auto.out
8-
// RUN: %{run} %t_per_kernel.out | FileCheck %s
8+
// RUN: %{run} %t_per_kernel.out
99

10-
// RUN: %{run} %t_per_source.out | FileCheck %s
10+
// RUN: %{run} %t_per_source.out
1111

12-
// RUN: %{run} %t_auto.out | FileCheck %s
12+
// RUN: %{run} %t_auto.out
1313

14-
// RUN: %{run} %t_off.out | FileCheck %s
14+
// RUN: %{run} %t_off.out
1515

1616
#include <iostream>
1717
#include <sycl/sycl.hpp>
@@ -46,13 +46,11 @@ int main() {
4646
auto acc = b.get_access<access_mode::read_write>(cgh);
4747
cgh.single_task<kernel_name<1>>([=]() { acc[0] = foo(acc[0]); });
4848
});
49+
q.wait();
4950
} catch (exception &e) {
5051
std::cout << "Exception: " << e.what() << std::endl;
5152
return 1;
5253
}
5354

54-
std::cout << "OK";
5555
return 0;
5656
}
57-
58-
//CHECK: OK

0 commit comments

Comments
 (0)