diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-26 19:53:58 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-26 19:53:58 -0500 |
commit | b1c0d62060dc54d3f6609d09a9814b77949b2e7a (patch) | |
tree | 115198579cb2f9feb26bff62d73bba6cbb05c50d /gr-blocks/python | |
parent | 8f862bb5c40ef1976d6a6e4722ca36f29e86132c (diff) |
blocks: turning off controlport for these tests. If a port is specified, it can clash.
Diffstat (limited to 'gr-blocks/python')
-rw-r--r-- | gr-blocks/python/qa_file_metadata.py | 1 | ||||
-rwxr-xr-x | gr-blocks/python/qa_stream_mux.py | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/gr-blocks/python/qa_file_metadata.py b/gr-blocks/python/qa_file_metadata.py index 69974d6dad..c2319a800e 100644 --- a/gr-blocks/python/qa_file_metadata.py +++ b/gr-blocks/python/qa_file_metadata.py @@ -35,6 +35,7 @@ def sig_source_c(samp_rate, freq, amp, N): class test_file_metadata(gr_unittest.TestCase): def setUp(self): + os.environ['GR_CONF_CONTROLPORT_ON'] = 'False' self.tb = gr.top_block() def tearDown(self): 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): |