X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnuradio-core%2Fsrc%2Fpython%2Fgnuradio%2Fgr%2Fqa_message.py;h=6e85083bd76103e14f59d265edd2e94615a4eda8;hb=ea29b08aeb54227e6628f655ccfdb96fe4d8c378;hp=ad35c31aa00d7e75127220498df66c1648aa4cd4;hpb=18a684bf3dc144c48fc4cc6cc72f5070febd8074;p=debian%2Fgnuradio diff --git a/gnuradio-core/src/python/gnuradio/gr/qa_message.py b/gnuradio-core/src/python/gnuradio/gr/qa_message.py index ad35c31a..6e85083b 100755 --- a/gnuradio-core/src/python/gnuradio/gr/qa_message.py +++ b/gnuradio-core/src/python/gnuradio/gr/qa_message.py @@ -6,7 +6,7 @@ # # 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, @@ -21,7 +21,6 @@ # from gnuradio import gr, gr_unittest -import qa_basic_flow_graph def all_counts (): @@ -35,11 +34,9 @@ def all_counts (): class test_message (gr_unittest.TestCase): def setUp (self): - self.fg = gr.flow_graph() self.msgq = gr.msg_queue () def tearDown (self): - self.fg = None self.msgq = None def leak_check (self, fct): @@ -96,20 +93,22 @@ class test_message (gr_unittest.TestCase): input_data = (0,1,2,3,4,5,6,7,8,9) src = gr.vector_source_b(input_data) dst = gr.vector_sink_b() - self.fg.connect(src, dst) - self.fg.run() + tb = gr.top_block() + tb.connect(src, dst) + tb.run() self.assertEquals(input_data, dst.data()) def test_301(self): src = gr.message_source(gr.sizeof_char) dst = gr.vector_sink_b() - self.fg.connect(src, dst) + tb = gr.top_block() + tb.connect(src, dst) src.msgq().insert_tail(gr.message_from_string('01234')) src.msgq().insert_tail(gr.message_from_string('5')) src.msgq().insert_tail(gr.message_from_string('')) src.msgq().insert_tail(gr.message_from_string('6789')) src.msgq().insert_tail(gr.message(1)) # send EOF - self.fg.run() + tb.run() self.assertEquals(tuple(map(ord, '0123456789')), dst.data())