From a05bc72a010480fab9722c0d7b48093651b01ede Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 1 Feb 2024 09:10:15 -0500 Subject: [PATCH] Fix quote_verification test case randomly fail issue Signed-off-by: Wei Liu --- sh_script/integration_test.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sh_script/integration_test.py b/sh_script/integration_test.py index 089efda..91a90c5 100644 --- a/sh_script/integration_test.py +++ b/sh_script/integration_test.py @@ -224,6 +224,8 @@ def test_config_A_quote_verification(): ctx.execute_qmp() ctx.start_user_td(with_guest_kernel=True) ctx.connect_ssh() + + time.sleep(10) LOG.debug(export_ca_cmd) runner = ctx.exec_ssh_command(export_ca_cmd) @@ -803,6 +805,8 @@ def test_config_B_no_sb_quote_verification(): ctx.execute_qmp() ctx.start_user_td(with_guest_kernel=True) ctx.connect_ssh() + + time.sleep(10) LOG.debug(export_ca_cmd) runner = ctx.exec_ssh_command(export_ca_cmd) @@ -1335,6 +1339,8 @@ def test_config_B_sb_quote_verification(): ctx.execute_qmp() ctx.start_user_td(with_guest_kernel=True) ctx.connect_ssh() + + time.sleep(10) LOG.debug(export_ca_cmd) runner = ctx.exec_ssh_command(export_ca_cmd)