Tools: autotest: reword WARN to Problem on log link issue to prevent catch by CI

This commit is contained in:
Pierre Kancir 2024-11-22 12:20:40 +01:00 committed by Peter Barker
parent a7bbb1439c
commit 37c59e224e
1 changed files with 1 additions and 1 deletions

View File

@ -3318,7 +3318,7 @@ class TestSuite(ABC):
os.link(self.logfile, self.buildlog)
except OSError as error:
self.progress("OSError [%d]: %s" % (error.errno, error.strerror))
self.progress("WARN: Failed to create link: %s => %s, "
self.progress("Problem: Failed to create link: %s => %s, "
"will copy tlog manually to target location" %
(self.logfile, self.buildlog))
self.copy_tlog = True