summaryrefslogtreecommitdiff
path: root/gr-fec/python/fec/qa_fecapi_cc_buffer_overflow.py
Commit message (Collapse)AuthorAgeFilesLines
* gr-blocks: remove pdu blocksJacob Gilbert2021-03-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | The following have been moved to the new gr::pdu module or to gr::network and are no longer needed in gr::blocks: - pdu (noblock) - pdu_filter block - pdu_remove block - pdu_set block - pdu_to_tagged_stream block - random_pdu block - socket_pdu block - stream_pdu_base (noblock) - tagged_stream_to_pdu block - tcp_connection (noblock) - tuntap_pdu block The digital and FEC modules had a large number of references to the PDU blocks that were moved from gr-blocks to gr-pdu, this updates these changes in example flowgraphs and a few python files. The usage-manual update will be propagated to the wiki so that future exports will remain up to date. Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
* qa: run autopep8 formatting on qa python filesmormj2020-10-301-7/+11
| | | | | | find ./ -iname qa*.py | xargs autopep8 --in-place -a -a mostly formats whitespace and gets rid of trailing semicolons
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-fec: Add QA test for buffer overflow in CC decoderDaniel Estévez2020-01-061-0/+58
Adds a QA test that tries to detect the kind of buffer overflows in the CC decoder that were fixed in #2965 The decoder is run with different frame lengths, and several frames are tried to be decoded for each frame length. The test is considered successful if it doesn't segfault or abort.