summaryrefslogtreecommitdiff
path: root/modules/remote-sycl/tests/remote.cpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-11-21 20:47:10 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-11-21 20:47:10 +0100
commit36de95682200f3d1404951900b7d7089fefc62cc (patch)
treed638016910e98760831f8149938a2dcdd2e9e1e9 /modules/remote-sycl/tests/remote.cpp
parentb514d9e6dfceafb83cebcbb0c7ef4728b2ff0401 (diff)
downloadforstio-forstio-36de95682200f3d1404951900b7d7089fefc62cc.tar.gz
Reworking sycl
Diffstat (limited to 'modules/remote-sycl/tests/remote.cpp')
-rw-r--r--modules/remote-sycl/tests/remote.cpp20
1 files changed, 20 insertions, 0 deletions
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 <forstio/test/suite.hpp>
+
+#include "../c++/remote.hpp"
+
+namespace {
+namespace sch {
+using namespace saw::schema;
+}
+
+SAW_TEST("Remote Basics"){
+ using namespace saw;
+
+ remote<rmt::Sycl> 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();
+
+}
+}