summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/qa_blocks.cc
Commit message (Collapse)AuthorAgeFilesLines
* blocks: Replace QA test framework w/ Boost UTFMartin Braun2018-06-211-46/+0
|
* Re-add qa_gr_flowgraph/qa_set_msg_handler to test suiteDoug Geiger2015-07-091-1/+4
| | | | | | | | | | | During the great shuffling of v3.6->v3.7 qa_gr_flowgraph and qa_set_msg_handler got dropped on the cmake floor. This commit adds both back into the automated tests (this lives in gr-blocks since it requires the nop/null_source/null_sink blocks). Both files needed updating to the v3.7+ API (i.e. using gr::<blah> namespace instead of gr_<blah>), also two of the tests in qa_gr_flowgraph were failing since the null_source and null_sink have since been changed to allow infinite outputs/inputs (i.e. the test that checks the flowgraph connect checker was failing due to the underlying block allowing multiple ports). Instead we have to replicate the functionality of the null_sink/source in this file, but only allow a single in/out. Also removes sine_table.h which lives in gnuradio-runtime since the great re-shuffling of 2013 (the only place it is used in gnuradio-runtime/lib/math/fxpt.cc, and it does not get installed)
* runtime: added accessor to get base address of buffer. Addresses Issue #729.Tom Rondeau2015-02-131-0/+2
| | | | | | 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.
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-1/+1
|
* blocks: removing fxpt, nco, vco primitives from gr-blocks.Tom Rondeau2013-03-181-6/+0
| | | | Have decided to keep all basic math functions in core.
* blocks: moving copy, endian_swap, head, skiphead, vector_source/sink/insert ↵Tom Rondeau2013-03-161-0/+4
| | | | to gr-blocks.
* blocks: moved fxpt generators to gr-blocks.Tom Rondeau2013-03-071-0/+43
Added C++ QA test setup.