diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-27 18:35:38 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-27 18:35:38 -0500 |
commit | 2f55d7dfc33e8d990e44c5bbb7c6d2fbdaddd563 (patch) | |
tree | 87cc11b4b13a0f4960ac9106ecb487aa0e82fd4d /gr-blocks/python/qa_stream_mux.py | |
parent | 5a5338f584297f30e451e43dcb05f331cad51cd4 (diff) | |
parent | 6e988b777c6788cc7d434b869173ebcdcc2ce5e3 (diff) |
Merge branch 'next' of gnuradio.org:gnuradio into next
Diffstat (limited to 'gr-blocks/python/qa_stream_mux.py')
-rwxr-xr-x | gr-blocks/python/qa_stream_mux.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-blocks/python/qa_stream_mux.py b/gr-blocks/python/qa_stream_mux.py index f21a9bbbc9..657bd3d63f 100755 --- a/gr-blocks/python/qa_stream_mux.py +++ b/gr-blocks/python/qa_stream_mux.py @@ -22,10 +22,12 @@ from gnuradio import gr, gr_unittest import blocks_swig +import os class test_stream_mux (gr_unittest.TestCase): def setUp (self): + os.environ['GR_CONF_CONTROLPORT_ON'] = 'False' self.tb = gr.top_block () def tearDown (self): |