summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/runtime/qa_runtime.cc
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2010-11-02 16:00:51 -0400
committerTom Rondeau <trondeau@vt.edu>2010-11-02 16:00:51 -0400
commit1c7119f52792da359fc5638a589b8cc8fa959864 (patch)
treea8701929af358b423b00695a770edc1d78f3d0a9 /gnuradio-core/src/lib/runtime/qa_runtime.cc
parent428ccb2218464a33923b3e576ad42af21468c82d (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.cc2
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;
}