diff options
Diffstat (limited to 'scripts/test_module_load.py')
-rwxr-xr-x | scripts/test_module_load.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/test_module_load.py b/scripts/test_module_load.py new file mode 100755 index 000000000..a4f3a62eb --- /dev/null +++ b/scripts/test_module_load.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python3 + +import sys +import os + +MODULES_INTEL = "e1000 e1000e igb ixgb ixgbe ixgbevf i40e i40evf" +MODULES_ACCEL_PPP = "ipoe" +MODULES_MISC = "wireguard" + +modules = { + "intel": ["e1000", "e1000e", "igb", "ixgb", "ixgbe", "ixgbevf", "i40e", "i40evf"], + "accel_ppp": ["ipoe"], + "misc": ["wireguard"] +} + +if __name__ == '__main__': + success = True + + print("[load modules] Test execution started") + for msk in modules: + ms = modules[msk] + for m in ms: + # We want to uncover all modules that fail, + # not fail at the first one + try: + os.system("modprobe {0}".format(m)) + except Exception as e: + print("[load modules] Test [modprobe {0}] failed: {1}".format(module, e)) + success = False + + if not success: + print("Test [load modules] failed") + sys.exit(1) + else: + print("[load modules] Test succeeded") |