diff options
author | Tom Rondeau <trondeau@vt.edu> | 2010-11-02 16:00:51 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2010-11-02 16:00:51 -0400 |
commit | 1c7119f52792da359fc5638a589b8cc8fa959864 (patch) | |
tree | a8701929af358b423b00695a770edc1d78f3d0a9 /gnuradio-core/src/lib/runtime/qa_runtime.cc | |
parent | 428ccb2218464a33923b3e576ad42af21468c82d (diff) |
Adding QA code to perform some tests on tags. Setting and getting items read/written; testing adding and retrieving tags.
Diffstat (limited to 'gnuradio-core/src/lib/runtime/qa_runtime.cc')
-rw-r--r-- | gnuradio-core/src/lib/runtime/qa_runtime.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnuradio-core/src/lib/runtime/qa_runtime.cc b/gnuradio-core/src/lib/runtime/qa_runtime.cc index 31e3a82d67..967d4bfa8a 100644 --- a/gnuradio-core/src/lib/runtime/qa_runtime.cc +++ b/gnuradio-core/src/lib/runtime/qa_runtime.cc @@ -38,6 +38,7 @@ #include <qa_gr_hier_block2.h> #include <qa_gr_hier_block2_derived.h> #include <qa_gr_buffer.h> +#include <qa_block_tags.h> CppUnit::TestSuite * qa_runtime::suite () @@ -52,6 +53,7 @@ qa_runtime::suite () s->addTest (qa_gr_hier_block2::suite ()); s->addTest (qa_gr_hier_block2_derived::suite ()); s->addTest (qa_gr_buffer::suite ()); + s->addTest (qa_block_tags::suite ()); return s; } |