summaryrefslogtreecommitdiff
path: root/gr-blocks/python
diff options
context:
space:
mode:
authorJohnathan Corgan2012-07-03 09:49:20 -0700
committerJohnathan Corgan2012-07-03 09:49:20 -0700
commit84f9822b4a8fe4290e971c09b2bd99f1bf59517b (patch)
tree9da3968db1543db85049d5d1c8cbb56dcdca009d /gr-blocks/python
parent025f323d9857715a31a1117693c5debd19393a46 (diff)
downloadgnuradio-84f9822b4a8fe4290e971c09b2bd99f1bf59517b.tar.gz
gnuradio-84f9822b4a8fe4290e971c09b2bd99f1bf59517b.tar.bz2
gnuradio-84f9822b4a8fe4290e971c09b2bd99f1bf59517b.zip
blocks: added gr::blocks::not_XX (bb ss ii)
Diffstat (limited to 'gr-blocks/python')
-rwxr-xr-xgr-blocks/python/qa_boolean_operators.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-blocks/python/qa_boolean_operators.py b/gr-blocks/python/qa_boolean_operators.py
index 8dad41a92..dc011c14e 100755
--- a/gr-blocks/python/qa_boolean_operators.py
+++ b/gr-blocks/python/qa_boolean_operators.py
@@ -169,27 +169,27 @@ class test_boolean_operators (gr_unittest.TestCase):
self.help_ii ((src1_data, src2_data),
expected_result, op)
+ """
def test_not_ss (self):
src1_data = (1, 2, 3, 0x5004, 0x1150)
expected_result = (~1, ~2, ~3, ~0x5004, ~0x1150)
- op = gr.not_ss ()
+ op = blocks_swig.not_ss ()
self.help_ss ((((src1_data),)),
expected_result, op)
def test_not_bb (self):
src1_data = (1, 2, 2, 3, 0x04, 0x50)
expected_result = (0xFE, 0xFD, 0xFD, 0xFC, 0xFB, 0xAF)
- op = gr.not_bb ()
+ op = blocks_swig.not_bb ()
self.help_bb (((src1_data), ),
expected_result, op)
def test_not_ii (self):
src1_data = (1, 2, 3, 0x50005004, 0x11001150)
expected_result = (~1 , ~2, ~3, ~0x50005004, ~0x11001150)
- op = gr.not_ii ()
+ op = blocks_swig.not_ii ()
self.help_ii (((src1_data),),
expected_result, op)
- """
if __name__ == '__main__':