summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/sine_table.h
Commit message (Collapse)AuthorAgeFilesLines
* Re-add qa_gr_flowgraph/qa_set_msg_handler to test suiteDoug Geiger2015-07-091-1025/+0
| | | | | | | | | | | 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)
* blocks: moved fxpt generators to gr-blocks.Tom Rondeau2013-03-071-0/+1025
Added C++ QA test setup.