summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/test_runtime.cc
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-04-01 13:41:04 -0400
committerJohnathan Corgan <johnathan@corganlabs.com>2013-04-01 16:25:12 -0700
commit9e2eef3cfc7ead637e578eed73e8f33f24d3ed8a (patch)
tree69563d65ba2bb380939f15f71891e3dfdfc2f0a3 /gnuradio-runtime/lib/test_runtime.cc
parent5672d2a4082a40a12f96362d59b16b47b9d3ce09 (diff)
build: removed last references to GRUEL.
Also update qa_runtime to pull in qa_pmt tests.
Diffstat (limited to 'gnuradio-runtime/lib/test_runtime.cc')
-rw-r--r--gnuradio-runtime/lib/test_runtime.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/test_runtime.cc b/gnuradio-runtime/lib/test_runtime.cc
index 783cbebc0b..daafca20cd 100644
--- a/gnuradio-runtime/lib/test_runtime.cc
+++ b/gnuradio-runtime/lib/test_runtime.cc
@@ -29,6 +29,7 @@
#include <gr_unittests.h>
#include <qa_runtime.h>
+#include <pmt/qa_pmt.h>
int
main (int argc, char **argv)
@@ -37,10 +38,11 @@ main (int argc, char **argv)
std::ofstream xmlfile(get_unittest_path("gnuradio_core_runtime.xml").c_str());
CppUnit::XmlOutputter *xmlout = new CppUnit::XmlOutputter(&runner.result(), xmlfile);
- runner.addTest (qa_runtime::suite ());
+ runner.addTest(qa_runtime::suite());
+ runner.addTest(qa_pmt::suite());
runner.setOutputter(xmlout);
- bool was_successful = runner.run ("", false);
+ bool was_successful = runner.run("", false);
return was_successful ? 0 : 1;
}