From 9cf833b77af9f74b65fd28af2803171aeddff7e6 Mon Sep 17 00:00:00 2001 From: Sachin P Bappalige Date: Mon, 29 Apr 2024 13:35:59 +0530 Subject: [PATCH] kdump verify dump needs timeout for copying config file Signed-off-by: Sachin P Bappalige --- testcases/PowerNVDump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/PowerNVDump.py b/testcases/PowerNVDump.py index d349b408..08c4df09 100644 --- a/testcases/PowerNVDump.py +++ b/testcases/PowerNVDump.py @@ -247,7 +247,7 @@ def verify_dump_file(self, boot_type=BootType.NORMAL, dump_place="local"): if self.distro == "rhel": self.cv_HOST.host_run_command("cp /etc/kdump.conf_bck /etc/kdump.conf", timeout=60) if self.distro == "sles": - self.cv_HOST.host_run_command("cp /etc/sysconfig/kdump_bck /etc/sysconfig/kdump") + self.cv_HOST.host_run_command("cp /etc/sysconfig/kdump_bck /etc/sysconfig/kdump", timeout=60) if dump_place == "local": crash_content_after = self.c.run_command( "ls -l /var/crash | grep '^d'| awk '{print $9}'")