diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-18 13:22:22 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-12-18 13:22:22 +0100 |
| commit | e99dd261a1f89acf5ad77effeb85f1efeae202b7 (patch) | |
| tree | 3db26fa9b0e8cb459642119d143112bd5e3a227a | |
| parent | 6773c1225ac5eb40044e897e4d18b89df9e4b14b (diff) | |
| download | forstio-forstio-e99dd261a1f89acf5ad77effeb85f1efeae202b7.tar.gz | |
Minor change
| -rw-r--r-- | modules/remote-sycl/tests/remote.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/remote-sycl/tests/remote.cpp b/modules/remote-sycl/tests/remote.cpp index 4315e69..e580f17 100644 --- a/modules/remote-sycl/tests/remote.cpp +++ b/modules/remote-sycl/tests/remote.cpp @@ -16,5 +16,10 @@ SAW_TEST("Remote Basics"){ SAW_EXPECT(eo_sycl_addr.is_value(),"Couldn't parse address"); auto& sycl_addr = eo_sycl_addr.get_value(); + + auto eo_dat_srv = sycl_rmt.data_listen(sycl_addr); + SAW_EOV_EXPECT(eo_dat_srv); + + auto& dat_srv = eo_dat_srv.get_value(); } } |
