gnuradio-core: trial "fix" for QA failure with debian gcc 4.4.4
[debian/gnuradio] / gnuradio-core / src / lib / filter / qa_gri_mmse_fir_interpolator.cc
index a756bbc4a48d0cab7a0192ef23d567d57acfb26a..a4deafb914255f11ed5def96b6a4a21713bb3822 100644 (file)
@@ -1,12 +1,12 @@
 /* -*- c++ -*- */
 /*
- * Copyright 2002 Free Software Foundation, Inc.
+ * Copyright 2002,2010 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,
@@ -16,8 +16,8 @@
  * 
  * 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., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * the Free Software Foundation, Inc., 51 Franklin Street,
+ * Boston, MA 02110-1301, USA.
  */
 
 #include <cppunit/TestAssert.h>
@@ -25,6 +25,7 @@
 #include <gri_mmse_fir_interpolator.h>
 #include <stdio.h>
 #include <cmath>
+#include <cstring>
 
 #define        NELEM(x) (sizeof (x) / sizeof (x[0]))
 
@@ -41,7 +42,10 @@ void
 qa_gri_mmse_fir_interpolator::t1 ()
 {
   static const unsigned        N = 100;
-  float input[N + 10];
+
+  float input_raw[N + 10 + 4*16/sizeof(float)];
+  memset(input_raw, 0, sizeof(input_raw));
+  float *input = &input_raw[2*16/sizeof(float)];
 
   for (unsigned i = 0; i < NELEM(input); i++)
     input[i] = test_fcn ((double) i);