summaryrefslogtreecommitdiff
path: root/gr-zeromq/python/zeromq/qa_zeromq_pull_msg_source.py
Commit message (Collapse)AuthorAgeFilesLines
* zeromq: Fix warnings with recv()Martin Braun2021-02-151-3/+4
| | | | | | | | The recv() call on a ZMQ socket produces a warning if the return value is not stored. We follow the advice and check the return value, just in case. Signed-off-by: Martin Braun <martin.braun@ettus.com>
* qa: run autopep8 formatting on qa python filesmormj2020-10-301-2/+6
| | | | | | find ./ -iname qa*.py | xargs autopep8 --in-place -a -a mostly formats whitespace and gets rid of trailing semicolons
* zmq: Add ZMQ PULL/REQ/SUB Message Source unit testsVasil Velichkov2020-03-101-0/+61
The plain zeromq sockets are used instead of the corresponding ZMQ sink block in order to expose the actual ZMQ interface and test errors like invalid PMT message that cannot be tested with the ZMQ sinks.