diff options
author | Tom Rondeau <trondeau@vt.edu> | 2010-10-02 17:35:16 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2010-10-02 17:35:16 -0400 |
commit | 57368f1a3f7f2e92190d72328ff54eb452ba58ed (patch) | |
tree | 7c3bdea1df4fccc578096588bb0d550b6013d7d3 /gr-atsc/src/lib/test_atsci.cc | |
parent | 2b8bd0d2fa7c76282a772b75cb99e7bd5f2be13f (diff) |
Modified gcell and gr-atsc cppunit tests to output XML files, too. Gcell needs testing.
Diffstat (limited to 'gr-atsc/src/lib/test_atsci.cc')
-rw-r--r-- | gr-atsc/src/lib/test_atsci.cc | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gr-atsc/src/lib/test_atsci.cc b/gr-atsc/src/lib/test_atsci.cc index 5267e0d4fe..184895a90d 100644 --- a/gr-atsc/src/lib/test_atsci.cc +++ b/gr-atsc/src/lib/test_atsci.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2002,2006 Free Software Foundation, Inc. + * Copyright 2002,2006,2010 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -20,16 +20,23 @@ * Boston, MA 02110-1301, USA. */ +#include <gr_unittests.h> #include <cppunit/TextTestRunner.h> +#include <cppunit/XmlOutputter.h> #include <qa_atsci.h> int main (int argc, char **argv) { - - CppUnit::TextTestRunner runner; + char path[200]; + get_unittest_path ("gr_atsc.xml", path, 200); + + CppUnit::TextTestRunner runner; + std::ofstream xmlfile(path); + CppUnit::XmlOutputter *xmlout = new CppUnit::XmlOutputter(&runner.result(), xmlfile); runner.addTest (qa_atsc::suite ()); + runner.setOutputter(xmlout); bool was_successful = runner.run ("", false); |