aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/rfnoc_block_tests
Commit message (Collapse)AuthorAgeFilesLines
* tests: Remove unused constantsMartin Braun2021-03-045-18/+0
| | | | This fixes some clang warnings.
* host: Update code base using clang-tidyMartin Braun2021-03-048-21/+23
| | | | | | | | | The checks from the new clang-tidy file are applied to the source tree using: $ find . -name "*.cpp" | sort -u | xargs \ --max-procs 8 --max-args 1 clang-tidy --format-style=file \ --fix -p /path/to/compile_commands.json
* rfnoc: replay: Add support for 32-bit memory address widthsettus2020-09-031-2/+2
| | | | | | Increases the supported memory sizes in software to 2^32 and beyond. Signed-off-by: mattprost <matt.prost@ni.com>
* rfnoc: Remove M_PI usage to fix Windows buildsSteven Koo2020-08-071-7/+5
| | | | | | M_PI may not exist if _USE_MATH_DEFINES isn't defined before the first include of math.h or cmath on Windows. This changes avoids the issue all together by defining our own PI.
* tests: Add unit test for Keep One in N block controllerAaron Rossetto2020-08-051-0/+137
|
* tests: Add Replay Block controller unit testmattprost2020-08-041-0/+759
| | | | Signed-off-by: mattprost <matt.prost@ni.com>
* tests: Add unit test for siggen RFNoC block controllerAaron Rossetto2020-07-301-0/+348
|
* rfnoc: Add Switchboard block unit testsJesse Zhang2020-07-301-0/+157
|
* tests: Add unit test for Moving Average RFNoC blockmattprost2020-07-161-0/+107
| | | | Signed-off-by: mattprost <matt.prost@ni.com>
* rfnoc: Add unit test for Log Power RFNoC blockAaron Rossetto2020-06-291-0/+81
|
* rfnoc: Add unit test for Window RFNoC blockAaron Rossetto2020-06-291-0/+248
|
* tests: Add unit test for FFT RFNoC blockAaron Rossetto2020-06-181-0/+187
|
* rfnoc: Add unit test for Add/Sub RFNoC blockAaron Rossetto2020-05-281-0/+89
|
* tests: Add unit test for Split Stream RFNoC blockAaron Rossetto2020-05-281-0/+228
| | | | This commit adds a unit test for the split stream RFNoC block.
* tests: Added unit test for Vector IIR RFNoC blockAaron Rossetto2020-05-191-0/+221
|
* tests: Add Fosphor block controller unit testWade Fife2020-04-141-0/+354
|
* tests: migrated rfnoc block tests to dedicated subdirectorymattprost2020-04-134-0/+668
This separates the rfnoc block tests into files for each specific block. This was done to improve the readability of these files and declutter the tests directory. Signed-off-by: mattprost <matt.prost@ni.com>