diff options
-rw-r--r-- | gr-blocks/python/blocks/qa_moving_average.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gr-blocks/python/blocks/qa_moving_average.py b/gr-blocks/python/blocks/qa_moving_average.py index f5b17912f5..2e517a92b1 100644 --- a/gr-blocks/python/blocks/qa_moving_average.py +++ b/gr-blocks/python/blocks/qa_moving_average.py @@ -90,13 +90,11 @@ class test_moving_average(gr_unittest.TestCase): def test_03(self): tb = self.tb - print "setting up" vlen = 5 N = 10*vlen seed = 0 data = make_random_float_tuple(N, 2**10) data = [int(d*1000) for d in data] - print "making blocks" src = blocks.vector_source_i(data, False) one_to_many = blocks.stream_to_streams(gr.sizeof_int, vlen) one_to_vector = blocks.stream_to_vector(gr.sizeof_int, vlen) @@ -106,7 +104,6 @@ class test_moving_average(gr_unittest.TestCase): dut_dst = blocks.vector_sink_i(vlen=vlen) ref_dst = blocks.vector_sink_i(vlen=vlen) - print "connecting" tb.connect(src, one_to_many) tb.connect(src, one_to_vector, dut, dut_dst) tb.connect(many_to_vector, ref_dst) @@ -114,10 +111,8 @@ class test_moving_average(gr_unittest.TestCase): tb.connect((one_to_many,idx), single, (many_to_vector,idx)) - print "running" tb.run() - print "comparing" dut_data = dut_dst.data() ref_data = ref_dst.data() |