diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-04-08 15:20:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-08 15:20:35 +0100 |
commit | ada2cac0324dd3fa668b9af58f119b8a64b4e9e1 (patch) | |
tree | 9bdae16f08381545c81e762578ff7820a1a2b618 /smoketest/scripts/cli/test_interfaces_loopback.py | |
parent | 6522dcdc8a07f15ceb504f29bf190a36d3d6ae82 (diff) | |
parent | 3f0f7f3c0998e677747a398527ab2f78ad45a604 (diff) | |
download | vyos-1x-ada2cac0324dd3fa668b9af58f119b8a64b4e9e1.tar.gz vyos-1x-ada2cac0324dd3fa668b9af58f119b8a64b4e9e1.zip |
Merge pull request #4439 from c-po/wifi-smoketest
T7325: wifi: mac80211_hwsim kernel module no longer supports VLAN interfaces in smoketests
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_loopback.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_loopback.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_loopback.py b/smoketest/scripts/cli/test_interfaces_loopback.py index 0454dc658..f4b6038c5 100755 --- a/smoketest/scripts/cli/test_interfaces_loopback.py +++ b/smoketest/scripts/cli/test_interfaces_loopback.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2020-2023 VyOS maintainers and contributors +# Copyright (C) 2020-2025 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 @@ -17,6 +17,7 @@ import unittest from base_interfaces_test import BasicInterfaceTest +from base_interfaces_test import MSG_TESTCASE_UNSUPPORTED from netifaces import interfaces from vyos.utils.network import is_intf_addr_assigned @@ -53,7 +54,7 @@ class LoopbackInterfaceTest(BasicInterfaceTest.TestCase): self.assertTrue(is_intf_addr_assigned('lo', addr)) def test_interface_disable(self): - self.skipTest('not supported') + self.skipTest(MSG_TESTCASE_UNSUPPORTED) if __name__ == '__main__': unittest.main(verbosity=2) |