diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-16 19:30:59 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-16 23:52:20 -0400 |
commit | a792bb88f3c3caa347506503de973aafaf78e0af (patch) | |
tree | a0332d76356df331134f340a2ce527e884c1bdd3 /gr-blocks/lib/qa_blocks.cc | |
parent | dd5e9df6bf93b676ffa8051b68bd2dbb8d71c15c (diff) |
blocks: moving copy, endian_swap, head, skiphead, vector_source/sink/insert to gr-blocks.
Diffstat (limited to 'gr-blocks/lib/qa_blocks.cc')
-rw-r--r-- | gr-blocks/lib/qa_blocks.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gr-blocks/lib/qa_blocks.cc b/gr-blocks/lib/qa_blocks.cc index fbae11d264..ebf5d3c349 100644 --- a/gr-blocks/lib/qa_blocks.cc +++ b/gr-blocks/lib/qa_blocks.cc @@ -26,18 +26,22 @@ */ #include <qa_blocks.h> +#include <qa_block_tags.h> #include <qa_fxpt.h> #include <qa_fxpt_nco.h> #include <qa_fxpt_vco.h> +#include <qa_rotator.h> CppUnit::TestSuite * qa_gr_blocks::suite() { CppUnit::TestSuite *s = new CppUnit::TestSuite("gr-blocks"); + s->addTest(qa_block_tags::suite()); s->addTest(qa_fxpt::suite()); s->addTest(qa_fxpt_nco::suite()); s->addTest(qa_fxpt_vco::suite()); + s->addTest(qa_rotator::suite()); return s; } |