diff options
author | eb | 2007-09-05 01:43:43 +0000 |
---|---|---|
committer | eb | 2007-09-05 01:43:43 +0000 |
commit | b644e266dd6f5f4b6cdac126477b61debee89e26 (patch) | |
tree | ea2df43c9376b6125ae9b9bba070a3a901fc95f1 /usrp/host/lib/inband/qa_inband_usrp_server.h | |
parent | 9ccd0ffb7846f7d8d82e9214bca9c2d11311b649 (diff) | |
download | gnuradio-b644e266dd6f5f4b6cdac126477b61debee89e26.tar.gz gnuradio-b644e266dd6f5f4b6cdac126477b61debee89e26.tar.bz2 gnuradio-b644e266dd6f5f4b6cdac126477b61debee89e26.zip |
Merged features/inband-usb r5224:6306 into trunk.
This is work-in-progress on inband signaling for the USRP1.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@6307 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp/host/lib/inband/qa_inband_usrp_server.h')
-rw-r--r-- | usrp/host/lib/inband/qa_inband_usrp_server.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usrp/host/lib/inband/qa_inband_usrp_server.h b/usrp/host/lib/inband/qa_inband_usrp_server.h index 91cf7d87c..5db57c3ed 100644 --- a/usrp/host/lib/inband/qa_inband_usrp_server.h +++ b/usrp/host/lib/inband/qa_inband_usrp_server.h @@ -28,15 +28,21 @@ class qa_inband_usrp_server : public CppUnit::TestCase { CPPUNIT_TEST_SUITE(qa_inband_usrp_server); + CPPUNIT_TEST(test_open_close); CPPUNIT_TEST(test_chan_allocation); CPPUNIT_TEST(test_chan_deallocation); - CPPUNIT_TEST(test_fragmentation); + CPPUNIT_TEST(test_tx); + CPPUNIT_TEST(test_rx); + CPPUNIT_TEST(test_cs); CPPUNIT_TEST_SUITE_END(); private: void test_chan_allocation(); void test_chan_deallocation(); - void test_fragmentation(); + void test_open_close(); + void test_tx(); + void test_rx(); + void test_cs(); }; #endif /* INCLUDED_QA_INBAND_USRP_SERVER_H */ |