diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-02-13 16:14:19 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-02-13 16:15:35 -0500 |
commit | bab014a9f47f1d64f47317cec683a10c02ffa462 (patch) | |
tree | de1ccea23f63d278e82d0aa4fb56441f0bd38062 /gr-blocks/lib/qa_blocks.cc | |
parent | c990e8256dd580a72b28d138c030a112a33157f7 (diff) |
runtime: added accessor to get base address of buffer. Addresses Issue #729.
Reintroduced qa_gr_block and added t2 tests to get input/output buffer size and base.
Need to include buffer.h, block.h, and block_detail.h when calling these in a block's work function.
Diffstat (limited to 'gr-blocks/lib/qa_blocks.cc')
-rw-r--r-- | gr-blocks/lib/qa_blocks.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-blocks/lib/qa_blocks.cc b/gr-blocks/lib/qa_blocks.cc index 149ef7aa7c..b28ab5a57d 100644 --- a/gr-blocks/lib/qa_blocks.cc +++ b/gr-blocks/lib/qa_blocks.cc @@ -28,6 +28,7 @@ #include <qa_blocks.h> #include <qa_block_tags.h> #include <qa_rotator.h> +#include <qa_gr_block.h> CppUnit::TestSuite * qa_blocks::suite() @@ -36,6 +37,7 @@ qa_blocks::suite() s->addTest(qa_block_tags::suite()); s->addTest(qa_rotator::suite()); + s->addTest(qa_gr_block::suite()); return s; } |