aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/tests/run_unit_tests.py
diff options
context:
space:
mode:
authorLars Amsel <lars.amsel@ni.com>2019-12-05 15:43:06 +0100
committerMartin Braun <martin@gnuradio.org>2021-05-31 05:28:47 -0700
commit73462501f04fe423bc3b4ec232dba710ee551e2b (patch)
treeaf62036f7fc46ad6fa3ee400df404d86dcb3bc3e /mpm/python/tests/run_unit_tests.py
parent0d55f572b7aceac1176f73c163049de4a0bde2eb (diff)
downloaduhd-73462501f04fe423bc3b4ec232dba710ee551e2b.tar.gz
uhd-73462501f04fe423bc3b4ec232dba710ee551e2b.tar.bz2
uhd-73462501f04fe423bc3b4ec232dba710ee551e2b.zip
mpm: add unit tests for EEPROM readers
Diffstat (limited to 'mpm/python/tests/run_unit_tests.py')
-rwxr-xr-xmpm/python/tests/run_unit_tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mpm/python/tests/run_unit_tests.py b/mpm/python/tests/run_unit_tests.py
index 88ea1a805..c563804ae 100755
--- a/mpm/python/tests/run_unit_tests.py
+++ b/mpm/python/tests/run_unit_tests.py
@@ -12,6 +12,7 @@ import sys
import argparse
from sys_utils_tests import TestNet
from mpm_utils_tests import TestMpmUtils
+from eeprom_tests import TestEeprom
import importlib.util
if importlib.util.find_spec("xmlrunner"):
@@ -21,6 +22,7 @@ TESTS = {
'__all__': {
TestNet,
TestMpmUtils,
+ TestEeprom,
},
'n3xx': set(),
}