diff options
author | Marcus Müller <marcus@hostalia.de> | 2020-06-19 11:07:54 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-06-19 11:07:54 +0200 |
commit | e76d04ca2f4f15e3b1a1ab2a81dd52c4e6d2472c (patch) | |
tree | 1d86f68fceed9cd7204d9a79e816dc06c15feaf4 /gr-qtgui/python/qtgui/qa_qtgui.py | |
parent | 98348e37209aa7daeb96fe5ead815e5b083dc6da (diff) | |
parent | 39311758cb1e6a7424d3213b3eb2c65c8c4dcfe1 (diff) |
Move from SWIG to Pybind11
Goodbye, and thanks for all the fish, SWIG.
Please refer to docs/PYBIND11.md for details on how to deal with Pybind.
Diffstat (limited to 'gr-qtgui/python/qtgui/qa_qtgui.py')
-rw-r--r-- | gr-qtgui/python/qtgui/qa_qtgui.py | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/gr-qtgui/python/qtgui/qa_qtgui.py b/gr-qtgui/python/qtgui/qa_qtgui.py index 276077ee69..bed7272387 100644 --- a/gr-qtgui/python/qtgui/qa_qtgui.py +++ b/gr-qtgui/python/qtgui/qa_qtgui.py @@ -25,55 +25,57 @@ class test_qtgui(gr_unittest.TestCase): # constant. def test01(self): self.qtsnk = qtgui.sink_c(1024, 5, - 0, 1, "Test", - True, True, True, True) + 0.0, 1.0, "Test", + True, True, True, True, + None) def test02(self): self.qtsnk = qtgui.sink_f(1024, 5, 0, 1, "Test", - True, True, True, True) + True, True, True, True, + None) def test03(self): - self.qtsnk = qtgui.time_sink_c(1024, 1, "Test", 1) + self.qtsnk = qtgui.time_sink_c(1024, 1, "Test", 1, None) def test04(self): - self.qtsnk = qtgui.time_sink_f(1024, 1, "Test", 1) + self.qtsnk = qtgui.time_sink_f(1024, 1, "Test", 1, None) def test05(self): self.qtsnk = qtgui.freq_sink_c(1024, 5, - 0, 1, "Test", 1) + 0, 1, "Test", 1, None) def test06(self): self.qtsnk = qtgui.freq_sink_f(1024, 5, - 0, 1, "Test", 1) + 0, 1, "Test", 1, None) def test07(self): self.qtsnk = qtgui.waterfall_sink_c(1024, 5, - 0, 1, "Test") + 0, 1, "Test", 1, None) def test08(self): self.qtsnk = qtgui.waterfall_sink_f(1024, 5, - 0, 1, "Test") + 0, 1, "Test", 1, None) def test09(self): - self.qtsnk = qtgui.const_sink_c(1024, "Test", 1) + self.qtsnk = qtgui.const_sink_c(1024, "Test", 1, None) def test10(self): self.qtsnk = qtgui.time_raster_sink_b(1024, 100, 100.5, - [], [], "Test", 1) + [], [], "Test", 1, None) def test11(self): self.qtsnk = qtgui.time_raster_sink_f(1024, 100, 100.5, - [], [], "Test", 1) + [], [], "Test", 1, None) def test12(self): - self.qtsnk = qtgui.histogram_sink_f(1024, 100, -1, 1, "Test", 1) + self.qtsnk = qtgui.histogram_sink_f(1024, 100, -1, 1, "Test", 1, None) def test13(self): - self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1) + self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1, None) def test13(self): - self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1) + self.qtsnk = qtgui.eye_sink_c(1024, 1, "Test", 1, None) if __name__ == '__main__': gr_unittest.run(test_qtgui, "test_qtgui.xml") |