summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/test_gr_blocks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/test_gr_blocks.cc')
-rw-r--r--gr-blocks/lib/test_gr_blocks.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-blocks/lib/test_gr_blocks.cc b/gr-blocks/lib/test_gr_blocks.cc
index 14f047fb7b..2d8f0d6d2a 100644
--- a/gr-blocks/lib/test_gr_blocks.cc
+++ b/gr-blocks/lib/test_gr_blocks.cc
@@ -27,7 +27,7 @@
#include <cppunit/TextTestRunner.h>
#include <cppunit/XmlOutputter.h>
-#include <gr_unittests.h>
+#include <gnuradio/unittests.h>
#include <qa_blocks.h>
#include <iostream>
@@ -35,10 +35,10 @@ int
main(int argc, char **argv)
{
CppUnit::TextTestRunner runner;
- std::ofstream xmlfile(get_unittest_path("gr_blocks.xml").c_str());
+ std::ofstream xmlfile(get_unittest_path("blocks.xml").c_str());
CppUnit::XmlOutputter *xmlout = new CppUnit::XmlOutputter(&runner.result(), xmlfile);
- runner.addTest(qa_gr_blocks::suite());
+ runner.addTest(qa_blocks::suite());
runner.setOutputter(xmlout);
bool was_successful = runner.run("", false);