diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-05 11:50:30 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-06 12:15:05 -0700 |
commit | 53341c286eb71ead76ff11796ab67bd98f73c3ab (patch) | |
tree | 9a60145a06d3614dd99670093b2fc337879e6a98 /host/test/addr_test.cpp | |
parent | 7e8a1f296f934a5546cdad575bcbe030a78b8bb1 (diff) | |
download | uhd-53341c286eb71ead76ff11796ab67bd98f73c3ab.tar.gz uhd-53341c286eb71ead76ff11796ab67bd98f73c3ab.tar.bz2 uhd-53341c286eb71ead76ff11796ab67bd98f73c3ab.zip |
usrp: added subdev spec class with parser to specify subdevice specifications for channel config
Diffstat (limited to 'host/test/addr_test.cpp')
-rw-r--r-- | host/test/addr_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/test/addr_test.cpp b/host/test/addr_test.cpp index 0c50200d6..d4b45aa1a 100644 --- a/host/test/addr_test.cpp +++ b/host/test/addr_test.cpp @@ -48,7 +48,7 @@ BOOST_AUTO_TEST_CASE(test_device_addr){ uhd::device_addr_t new_dev_addr(args_str); //they should be the same size - BOOST_CHECK_EQUAL(dev_addr.size(), new_dev_addr.size()); + BOOST_REQUIRE_EQUAL(dev_addr.size(), new_dev_addr.size()); //the keys should match std::vector<std::string> old_dev_addr_keys = dev_addr.keys(); |