summaryrefslogtreecommitdiff
path: root/modules/remote-sycl/tests/remote.cpp
diff options
context:
space:
mode:
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();
+
+}
+}