From 670724c51eccea6c622f047c546d15c894531ce3 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Tue, 20 Sep 2022 21:52:18 -0400 Subject: tests: disable failing tests on ubuntu-22.04 debian-11 Type: test Change-Id: I7b2314a731c83b3dcd69c999edb8ebed53839724 Signed-off-by: Dave Wallace --- test/hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/hook.py') diff --git a/test/hook.py b/test/hook.py index 3429bdad1fe..58bbcaf9e7d 100644 --- a/test/hook.py +++ b/test/hook.py @@ -116,7 +116,7 @@ class PollHook(Hook): Poll the vpp status and throw an exception if it's not running :raises VppDiedError: exception if VPP is not running anymore """ - if self.test.vpp_dead: + if not hasattr(self.test, "vpp") or self.test.vpp_dead: # already dead, nothing to do return -- cgit 1.2.3-korg