summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-01-18 18:01:11 +0100
committerChristian Breunig <christian@breunig.cc>2023-01-18 18:01:14 +0100
commitae8734f1052054aa2763398f3e85da5e28a0a6f9 (patch)
tree8f9d5f0bf52999563fefaa24da30b2e4631cf998
parent6b2e7dc343eaf2e5eabbacb0d4b6440fb04ada94 (diff)
downloadvyos-1x-ae8734f1052054aa2763398f3e85da5e28a0a6f9.tar.gz
vyos-1x-ae8734f1052054aa2763398f3e85da5e28a0a6f9.zip
smoketests: modules: wireguard no longer needs to be loaded
As WireGuard is now part of the mainline Kernel, we no longer need to validate it using the external module loader/tester.
-rwxr-xr-xsmoketest/scripts/system/test_module_load.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/smoketest/scripts/system/test_module_load.py b/smoketest/scripts/system/test_module_load.py
index 76a41ac4d..bd30c57ec 100755
--- a/smoketest/scripts/system/test_module_load.py
+++ b/smoketest/scripts/system/test_module_load.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2019-2020 VyOS maintainers and contributors
+# Copyright (C) 2019-2023 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -23,8 +23,7 @@ modules = {
"intel_qat": ["qat_200xx", "qat_200xxvf", "qat_c3xxx", "qat_c3xxxvf",
"qat_c62x", "qat_c62xvf", "qat_d15xx", "qat_d15xxvf",
"qat_dh895xcc", "qat_dh895xccvf"],
- "accel_ppp": ["ipoe", "vlan_mon"],
- "misc": ["wireguard"]
+ "accel_ppp": ["ipoe", "vlan_mon"]
}
class TestKernelModules(unittest.TestCase):