Skip to content

Commit 8f8d34c

Browse files
author
Alexander Batashev
authored
[SYCL] Re-enable interop task tests (#2342)
1 parent 901fe87 commit 8f8d34c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sycl/test/host-interop-task/interop-task.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
// RUN: %ACC_RUN_PLACEHOLDER %t.out
55
// UNSUPPORTED: level_zero, cuda
66
// REQUIRES: opencl
7-
// REQUIRES: TEMPORARY_DISABLED
87

98
#include <CL/sycl.hpp>
109
#include <CL/sycl/backend/opencl.hpp>
@@ -241,7 +240,7 @@ void test6() {
241240
});
242241
Queue.wait_and_throw();
243242
assert(!"Expected exception was not caught");
244-
} catch (sycl::exception &ExpectedException) {
243+
} catch (const sycl::exception &ExpectedException) {
245244
assert(std::string(ExpectedException.what())
246245
.find("memory object out of accessor for specified target "
247246
"is not allowed") != std::string::npos &&

0 commit comments

Comments
 (0)