From 5c393db4a025ec3d89f83ea3e33313cfa6953aac Mon Sep 17 00:00:00 2001 From: Ryan Cooke Date: Mon, 11 May 2026 16:15:28 +0100 Subject: [PATCH] tests: os: secureboot - make waiting for failed boot timer longer Change-type: patch Signed-off-by: Ryan Cooke --- tests/suites/os/tests/secureboot/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/suites/os/tests/secureboot/index.js b/tests/suites/os/tests/secureboot/index.js index 6fef96ae3d..c2d0eee5e7 100644 --- a/tests/suites/os/tests/secureboot/index.js +++ b/tests/suites/os/tests/secureboot/index.js @@ -314,7 +314,7 @@ class qemuSecureBoot extends uefiSecureBoot { * again within the timeout (boot failed) */ this.qmpClient.once('reset', () => { - setTimeout(reject, 10 * 1000); + setTimeout(reject, 20 * 1000); this.qmpClient.once('reset', resolve); }); });