summaryrefslogtreecommitdiff
path: root/gr-blocks/python
diff options
context:
space:
mode:
authorJohnathan Corgan2012-07-04 07:22:49 -0700
committerJohnathan Corgan2012-07-04 07:22:49 -0700
commita76cd7d47576054d7fac37710a8f79b908d18b00 (patch)
tree1692fd16e2f11fa4edf5eb1414931303e76fb442 /gr-blocks/python
parent4c85f46aee089432b090b988dedbc42091084ba3 (diff)
downloadgnuradio-a76cd7d47576054d7fac37710a8f79b908d18b00.tar.gz
gnuradio-a76cd7d47576054d7fac37710a8f79b908d18b00.tar.bz2
gnuradio-a76cd7d47576054d7fac37710a8f79b908d18b00.zip
blocks: added gr::blocks::xor_XX (bb ss ii)
Diffstat (limited to 'gr-blocks/python')
-rwxr-xr-xgr-blocks/python/qa_boolean_operators.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/gr-blocks/python/qa_boolean_operators.py b/gr-blocks/python/qa_boolean_operators.py
index 43de72a89..5572f60ac 100755
--- a/gr-blocks/python/qa_boolean_operators.py
+++ b/gr-blocks/python/qa_boolean_operators.py
@@ -60,12 +60,12 @@ class test_boolean_operators (gr_unittest.TestCase):
self.tb.run ()
result_data = dst.data ()
self.assertEqual (exp_data, result_data)
- """
+
def test_xor_ss (self):
src1_data = (1, 2, 3, 0x5004, 0x1150)
src2_data = (8, 2, 1 , 0x0508, 0x1105)
expected_result = (9, 0, 2, 0x550C, 0x0055)
- op = gr.xor_ss ()
+ op = blocks_swig.xor_ss ()
self.help_ss ((src1_data, src2_data),
expected_result, op)
@@ -73,7 +73,7 @@ class test_boolean_operators (gr_unittest.TestCase):
src1_data = (1, 2, 3, 4, 0x50)
src2_data = (8, 2, 1 , 8, 0x05)
expected_result = (9, 0, 2, 0xC, 0x55)
- op = gr.xor_bb ()
+ op = blocks_swig.xor_bb ()
self.help_bb ((src1_data, src2_data),
expected_result, op)
@@ -82,10 +82,11 @@ class test_boolean_operators (gr_unittest.TestCase):
src1_data = (1, 2, 3, 0x5000004, 0x11000050)
src2_data = (8, 2, 1 , 0x0500008, 0x11000005)
expected_result = (9, 0, 2, 0x550000C, 0x00000055)
- op = gr.xor_ii ()
+ op = blocks_swig.xor_ii ()
self.help_ii ((src1_data, src2_data),
expected_result, op)
- """
+
+
def test_and_ss (self):
src1_data = (1, 2, 3, 0x5004, 0x1150)
src2_data = (8, 2, 1 , 0x0508, 0x1105)