X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnuradio-core%2Fsrc%2Flib%2Ffilter%2Fqa_filter.cc;h=878d48023b717bad84eed436e57679841ab643e1;hb=ea29b08aeb54227e6628f655ccfdb96fe4d8c378;hp=f8451e503260abef9966430200b2a689c2d36049;hpb=18a684bf3dc144c48fc4cc6cc72f5070febd8074;p=debian%2Fgnuradio diff --git a/gnuradio-core/src/lib/filter/qa_filter.cc b/gnuradio-core/src/lib/filter/qa_filter.cc index f8451e50..878d4802 100644 --- a/gnuradio-core/src/lib/filter/qa_filter.cc +++ b/gnuradio-core/src/lib/filter/qa_filter.cc @@ -1,11 +1,11 @@ /* - * Copyright 2002 Free Software Foundation, Inc. + * Copyright 2002,2007 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 2, or (at your option) + * 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, @@ -34,6 +34,8 @@ #include #include #include +#include +#include CppUnit::TestSuite * qa_filter::suite () @@ -41,12 +43,14 @@ qa_filter::suite () CppUnit::TestSuite *s = new CppUnit::TestSuite ("filter"); s->addTest (qa_dotprod_suite ()); - s->addTest (qa_gri_mmse_fir_interpolator::suite ()); s->addTest (qa_gr_fir_fff::suite ()); s->addTest (qa_gr_fir_ccc::suite ()); s->addTest (qa_gr_fir_fcc::suite ()); s->addTest (qa_gr_fir_scc::suite ()); s->addTest (qa_gr_fir_ccf::suite ()); + s->addTest (qa_gri_mmse_fir_interpolator::suite ()); + s->addTest (qa_gri_mmse_fir_interpolator_cc::suite ()); + s->addTest (qa_gr_rotator::suite ()); return s; }