diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-06-21 17:35:37 -0700 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-06-23 00:17:18 +0200 |
commit | 841dc1439224bb413b5cc663d40e0859e420b546 (patch) | |
tree | efaede402c03b2324471007ce17619bb17d321e0 /gnuradio-runtime/lib/pmt/generate_unv.py | |
parent | 1f30b5b14f6d5a189a44565d0f7e4e8618bfa864 (diff) |
pmt: Replace QA test framework w/ Boost UTF
Diffstat (limited to 'gnuradio-runtime/lib/pmt/generate_unv.py')
-rwxr-xr-x | gnuradio-runtime/lib/pmt/generate_unv.py | 33 |
1 files changed, 2 insertions, 31 deletions
diff --git a/gnuradio-runtime/lib/pmt/generate_unv.py b/gnuradio-runtime/lib/pmt/generate_unv.py index 6218099fc1..c7daee9e45 100755 --- a/gnuradio-runtime/lib/pmt/generate_unv.py +++ b/gnuradio-runtime/lib/pmt/generate_unv.py @@ -81,8 +81,6 @@ includes = """ """ qa_includes = """ -#include <qa_pmt_unv.h> -#include <cppunit/TestAssert.h> #include <pmt/pmt.h> #include <stdio.h> @@ -146,34 +144,8 @@ def generate_cc(): def generate_qa_h(): - output_filename = 'qa_pmt_unv.h' - output = open(output_filename, 'w') - output.write(header) - output.write(guard_head(output_filename)) - - output.write(''' -#include <cppunit/extensions/HelperMacros.h> -#include <cppunit/TestCase.h> - -class qa_pmt_unv : public CppUnit::TestCase { - - CPPUNIT_TEST_SUITE(qa_pmt_unv); -''') - for tag, typ in unv_types: - output.write(' CPPUNIT_TEST(test_%svector);\n' % (tag,)) - output.write('''\ - CPPUNIT_TEST_SUITE_END(); - - private: -''') - for tag, typ in unv_types: - output.write(' void test_%svector();\n' % (tag,)) - output.write('};\n') - output.write(guard_tail) - -def generate_qa_cc(): - template = open_src('unv_qa_template.cc.t', 'r').read() - output = open('qa_pmt_unv.cc', 'w') + template = open_src('unv_qa_template.h.t', 'r').read() + output = open('qa_pmt_unv.h', 'w') output.write(header) output.write(qa_includes) for tag, typ in unv_types: @@ -185,7 +157,6 @@ def main(): generate_h() generate_cc() generate_qa_h() - generate_qa_cc() if __name__ == '__main__': main() |