File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
sycl/unittests/Extensions/BindlessImages Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,9 @@ TEST(BindlessImagesExtensionTests, ExternalSemaphoreWait) {
7070 urBindlessImagesWaitExternalSemaphoreExp_counter = 0 ;
7171
7272 sycl::queue Q;
73+ int DummyInt = 0 ;
7374 syclexp::external_semaphore DummySemaphore{};
75+ DummySemaphore.raw_handle = &DummyInt;
7476
7577 urBindlessImagesWaitExternalSemaphoreExp_expectHasWaitValue = false ;
7678 Q.ext_oneapi_wait_external_semaphore (DummySemaphore);
@@ -89,7 +91,9 @@ TEST(BindlessImagesExtensionTests, ExternalSemaphoreSignal) {
8991 urBindlessImagesSignalExternalSemaphoreExp_counter = 0 ;
9092
9193 sycl::queue Q;
94+ int DummyInt = 0 ;
9295 syclexp::external_semaphore DummySemaphore{};
96+ DummySemaphore.raw_handle = &DummyInt;
9397
9498 urBindlessImagesSignalExternalSemaphoreExp_expectHasSignalValue = false ;
9599 urBindlessImagesSignalExternalSemaphoreExp_expectedNumWaitEvents = 0 ;
You can’t perform that action at this time.
0 commit comments