blob: 4315e69a7d97fee8cc3ed76bcceded1148a9ec79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();
}
}
|