From cd34b290f444614f887eb284aaf135027c7cef41 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Thu, 11 Jul 2019 21:04:52 +0200 Subject: Separate system and CLI tests. --- scripts/system/test_module_load.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 scripts/system/test_module_load.py (limited to 'scripts/system') diff --git a/scripts/system/test_module_load.py b/scripts/system/test_module_load.py new file mode 100755 index 000000000..c96229b92 --- /dev/null +++ b/scripts/system/test_module_load.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python3 + +import sys +import os + +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") -- cgit v1.2.3