diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-07-11 21:04:52 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-07-11 21:04:52 +0200 |
commit | cd34b290f444614f887eb284aaf135027c7cef41 (patch) | |
tree | d4285f8f204e4c00f6f4debdf940dc128dd37949 /scripts/system | |
parent | 35a429c4ca1923b3e87531f34ca64133d4a82efc (diff) | |
download | vyos-1x-cd34b290f444614f887eb284aaf135027c7cef41.tar.gz vyos-1x-cd34b290f444614f887eb284aaf135027c7cef41.zip |
Separate system and CLI tests.
Diffstat (limited to 'scripts/system')
-rwxr-xr-x | scripts/system/test_module_load.py | 31 |
1 files changed, 31 insertions, 0 deletions
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") |