diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-07 22:35:48 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-07 22:35:48 -0500 |
commit | 42f8854f6d13de7e3f142f3f80233066a032d627 (patch) | |
tree | 5379d0b8655c7cd75cc6b8a2a8b1242c504cf5bd /gr-blocks/lib/qa_blocks.cc | |
parent | 7c79e56792570ffd4e0a17071a3ca7513d63baec (diff) |
blocks: moved fxpt generators to gr-blocks.
Added C++ QA test setup.
Diffstat (limited to 'gr-blocks/lib/qa_blocks.cc')
-rw-r--r-- | gr-blocks/lib/qa_blocks.cc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/gr-blocks/lib/qa_blocks.cc b/gr-blocks/lib/qa_blocks.cc new file mode 100644 index 0000000000..fbae11d264 --- /dev/null +++ b/gr-blocks/lib/qa_blocks.cc @@ -0,0 +1,43 @@ +/* + * Copyright 2012-2013 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * GNU Radio is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * GNU Radio is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Radio; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + */ + +/* + * This class gathers together all the test cases for the gr-blocks + * directory into a single test suite. As you create new test cases, + * add them here. + */ + +#include <qa_blocks.h> +#include <qa_fxpt.h> +#include <qa_fxpt_nco.h> +#include <qa_fxpt_vco.h> + +CppUnit::TestSuite * +qa_gr_blocks::suite() +{ + CppUnit::TestSuite *s = new CppUnit::TestSuite("gr-blocks"); + + s->addTest(qa_fxpt::suite()); + s->addTest(qa_fxpt_nco::suite()); + s->addTest(qa_fxpt_vco::suite()); + + return s; +} |