From 36de95682200f3d1404951900b7d7089fefc62cc Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Fri, 21 Nov 2025 20:47:10 +0100 Subject: Reworking sycl --- modules/remote-sycl/tests/remote.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 modules/remote-sycl/tests/remote.cpp (limited to 'modules/remote-sycl/tests/remote.cpp') diff --git a/modules/remote-sycl/tests/remote.cpp b/modules/remote-sycl/tests/remote.cpp new file mode 100644 index 0000000..4315e69 --- /dev/null +++ b/modules/remote-sycl/tests/remote.cpp @@ -0,0 +1,20 @@ +#include + +#include "../c++/remote.hpp" + +namespace { +namespace sch { +using namespace saw::schema; +} + +SAW_TEST("Remote Basics"){ + using namespace saw; + + remote sycl_rmt; + + auto eo_sycl_addr = sycl_rmt.parse_address(); + SAW_EXPECT(eo_sycl_addr.is_value(),"Couldn't parse address"); + auto& sycl_addr = eo_sycl_addr.get_value(); + +} +} -- cgit v1.2.3