diff options
Diffstat (limited to 'gr-blocks/python/blocks/qa_null_sink_source.py')
-rw-r--r-- | gr-blocks/python/blocks/qa_null_sink_source.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-blocks/python/blocks/qa_null_sink_source.py b/gr-blocks/python/blocks/qa_null_sink_source.py index d903eb9c0c..b8acdfc027 100644 --- a/gr-blocks/python/blocks/qa_null_sink_source.py +++ b/gr-blocks/python/blocks/qa_null_sink_source.py @@ -12,6 +12,7 @@ from gnuradio import gr, gr_unittest, blocks import math + class test_null_sink_source(gr_unittest.TestCase): def setUp(self): @@ -29,6 +30,6 @@ class test_null_sink_source(gr_unittest.TestCase): self.tb.connect(src, hed, dst) self.tb.run() + if __name__ == '__main__': gr_unittest.run(test_null_sink_source) - |