summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_vpn_pptp.py
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-02-01 20:57:21 +0100
committerGitHub <noreply@github.com>2024-02-01 20:57:21 +0100
commit9109a5603963216180f6d6fe09820ee1ba227ade (patch)
tree644c63f9cc3922d414ed81d0590f5f6d84c2d707 /smoketest/scripts/cli/test_vpn_pptp.py
parentc7e01e3e9b6b4a598e85f709ebcb8118e50494c3 (diff)
parent489bbde7131b24e756fc052bae096322ad9e6059 (diff)
downloadvyos-1x-9109a5603963216180f6d6fe09820ee1ba227ade.tar.gz
vyos-1x-9109a5603963216180f6d6fe09820ee1ba227ade.zip
Merge pull request #2916 from vyos/mergify/bp/sagitta/pr-2832
T5865: Moved ipv6 pools to named ipv6 pools in accel-ppp (backport #2832)
Diffstat (limited to 'smoketest/scripts/cli/test_vpn_pptp.py')
-rwxr-xr-xsmoketest/scripts/cli/test_vpn_pptp.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_vpn_pptp.py b/smoketest/scripts/cli/test_vpn_pptp.py
index 0d9ea312e..f3fce822b 100755
--- a/smoketest/scripts/cli/test_vpn_pptp.py
+++ b/smoketest/scripts/cli/test_vpn_pptp.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2023 VyOS maintainers and contributors
+# Copyright (C) 2023-2024 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
@@ -218,6 +218,10 @@ class TestVPNPPTPServer(BasicAccelPPPTest.TestCase):
self.assertEqual(f"req-limit=0", server[4])
self.assertEqual(f"fail-time=0", server[5])
+ @unittest.skip("IPv6 is not implemented in PPTP")
+ def test_accel_ipv6_pool(self):
+ pass
+
if __name__ == '__main__':
unittest.main(verbosity=2)