aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/graph.hpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-10-19 13:45:12 -0700
committerMartin Braun <martin.braun@ettus.com>2016-10-19 13:55:10 -0700
commitbd8409cc7602946ed8dc1cfb05d2383eea939800 (patch)
treeee217b1797c4d8b3a1de8d44dafbc0461d68a087 /host/tests/graph.hpp
parentad5b10677c91494f87c363e9096b7a2e61e414f6 (diff)
downloaduhd-bd8409cc7602946ed8dc1cfb05d2383eea939800.tar.gz
uhd-bd8409cc7602946ed8dc1cfb05d2383eea939800.tar.bz2
uhd-bd8409cc7602946ed8dc1cfb05d2383eea939800.zip
tests: Updated RFNoC tests after some API changes
Diffstat (limited to 'host/tests/graph.hpp')
-rw-r--r--host/tests/graph.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/host/tests/graph.hpp b/host/tests/graph.hpp
index 0c2be0347..894c436b3 100644
--- a/host/tests/graph.hpp
+++ b/host/tests/graph.hpp
@@ -43,8 +43,10 @@ private:
void connect_nodes(uhd::rfnoc::source_node_ctrl::sptr A, uhd::rfnoc::sink_node_ctrl::sptr B)
{
- A->connect_downstream(B);
- B->connect_upstream(A);
+ const size_t actual_src_port = A->connect_downstream(B);
+ const size_t actual_dst_port = B->connect_upstream(A);
+ A->set_downstream_port(actual_src_port, actual_dst_port);
+ B->set_upstream_port(actual_dst_port, actual_src_port);
}
#endif /* INCLUDED_TEST_GRAPH_HPP */