From 7e4c6c1fcfcd2c48791cdbc8bdb0d86da344d4f7 Mon Sep 17 00:00:00 2001 From: qwang59 Date: Wed, 13 Nov 2024 19:43:29 +0800 Subject: [PATCH] Correct the common.sh path, the initial test unit installed old lkvs Signed-off-by: qwang59 --- BM/hotplug/cpu_off_on_stress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BM/hotplug/cpu_off_on_stress.py b/BM/hotplug/cpu_off_on_stress.py index 6e96ff9..4d9d8e3 100755 --- a/BM/hotplug/cpu_off_on_stress.py +++ b/BM/hotplug/cpu_off_on_stress.py @@ -25,7 +25,7 @@ script_dir = os.path.dirname(os.path.abspath(__file__)) # Construce relative paths to the common.sh file -common_sh_path = os.path.join(script_dir, '../../common/common.sh') +common_sh_path = os.path.join(script_dir, '../common/common.sh') class ShellCommandRunnable(Runnable): def __init__(self, command):