From 5c744b23f02e50e539f160cd700e6c05d9fd9c36 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Thu, 25 Mar 2021 12:01:51 +0000 Subject: [PATCH] Mark "test_keepalived_spawns_conflicting_pid_*" tests as unstable Change-Id: I403e439e3a48d35f8e076e104f2bbba547cf9657 Related-Bug: #1921154 --- neutron/tests/functional/agent/linux/test_keepalived.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neutron/tests/functional/agent/linux/test_keepalived.py b/neutron/tests/functional/agent/linux/test_keepalived.py index 4145a896989..7c5b331803e 100644 --- a/neutron/tests/functional/agent/linux/test_keepalived.py +++ b/neutron/tests/functional/agent/linux/test_keepalived.py @@ -23,6 +23,7 @@ from neutron.agent.linux import ip_lib from neutron.agent.linux import keepalived from neutron.common import utils as common_utils from neutron.conf.agent.l3 import config as l3_config +from neutron.tests import base as tests_base from neutron.tests.common import net_helpers from neutron.tests.functional.agent.linux import helpers from neutron.tests.functional import base @@ -119,11 +120,13 @@ class KeepalivedManagerTestCase(base.BaseSudoTestCase, self._spawn_keepalived(self.manager) + @tests_base.unstable_test("bug 1921154") def test_keepalived_spawns_conflicting_pid_base_process(self): process = self.manager.get_process() pid_file = process.get_pid_file_name() self._test_keepalived_spawns_conflicting_pid(process, pid_file) + @tests_base.unstable_test("bug 1921154") def test_keepalived_spawns_conflicting_pid_vrrp_subprocess(self): process = self.manager.get_process() pid_file = process.get_pid_file_name()