From 04f6b8548c1cd88f775362d7c9490710a16b3e2a Mon Sep 17 00:00:00 2001 From: Teacher_Dong Date: Fri, 12 Jan 2024 06:46:34 +0000 Subject: [PATCH] Signed-off-by: Teacher_Dong Signed-off-by: Teacher_Dong --- aw/python/distributed/common/drivers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aw/python/distributed/common/drivers.py b/aw/python/distributed/common/drivers.py index 239238d..71cae5c 100755 --- a/aw/python/distributed/common/drivers.py +++ b/aw/python/distributed/common/drivers.py @@ -166,7 +166,8 @@ class CppTestDriver(ITestDriver): if options.coverage: receive_coverage_data(self.device, result_path, suite_file, file_name) - del long_command_path + if os.path.exists(long_command_path): + os.remove(long_command_path) ############################################################################## -- Gitee