diff options
author | Marcus Müller <mueller@kit.edu> | 2017-09-26 09:11:41 +0200 |
---|---|---|
committer | Marcus Müller <mueller@kit.edu> | 2017-09-26 09:11:41 +0200 |
commit | 775adfa8f34203f0a9a981346a4e0e75b8039b09 (patch) | |
tree | 99df6a8339f2dc1e63e870f27f0918f786f2cab0 /gr-blocks/python | |
parent | 295f5a6030437380562a339acdd95cc755572a37 (diff) |
removed print debugging in QA test
Diffstat (limited to 'gr-blocks/python')
-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() |