diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-26 14:01:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 14:01:52 +0200 |
commit | 4a9befb92550ae9abd5cf687208fdb09838ccc9d (patch) | |
tree | cd4c9f5546473a6868ecffa8fbee57606381c602 /smoketest/scripts/cli/base_vyostest_shim.py | |
parent | 9301c507f91ea40fc0d4d86cf708a7ba6d3b0bb9 (diff) | |
parent | ccd564c2328a086b326957fdde8b07ca560bd6b2 (diff) | |
download | vyos-1x-4a9befb92550ae9abd5cf687208fdb09838ccc9d.tar.gz vyos-1x-4a9befb92550ae9abd5cf687208fdb09838ccc9d.zip |
Merge pull request #3519 from c-po/dhcpv6-T3493
T3493: dhcpv6-server does not have prefix range validation
Diffstat (limited to 'smoketest/scripts/cli/base_vyostest_shim.py')
-rw-r--r-- | smoketest/scripts/cli/base_vyostest_shim.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/base_vyostest_shim.py b/smoketest/scripts/cli/base_vyostest_shim.py index c49d3e76c..efaa74fe0 100644 --- a/smoketest/scripts/cli/base_vyostest_shim.py +++ b/smoketest/scripts/cli/base_vyostest_shim.py @@ -1,4 +1,4 @@ -# Copyright (C) 2021-2023 VyOS maintainers and contributors +# Copyright (C) 2021-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 @@ -47,6 +47,8 @@ class VyOSUnitTestSHIM: def setUpClass(cls): cls._session = ConfigSession(os.getpid()) cls._session.save_config(save_config) + if os.path.exists('/tmp/vyos.smoketest.debug'): + cls.debug = True pass @classmethod |