diff mbox series

[1/5] oeqa/selftest: Fix broken symlink removal handling

Message ID 20230921223708.1333390-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit dbdb6e73b0f52bc5f9429aca47802d51edbbc834
Headers show
Series [1/5] oeqa/selftest: Fix broken symlink removal handling | expand

Commit Message

Richard Purdie Sept. 21, 2023, 10:37 p.m. UTC
The test above this removal correctly looks at symlinks however to
remove a symlink we should call unlink(), not remove(). This avoids
some build failures/tracebacks.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/lib/oeqa/selftest/context.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/context.py b/meta/lib/oeqa/selftest/context.py
index 7dab5614a92..16486e7eb99 100644
--- a/meta/lib/oeqa/selftest/context.py
+++ b/meta/lib/oeqa/selftest/context.py
@@ -437,7 +437,7 @@  class OESelftestTestContextExecutor(OETestContextExecutor):
             output_link = os.path.join(os.path.dirname(args.output_log),
                     "%s-results.log" % self.name)
             if os.path.lexists(output_link):
-                os.remove(output_link)
+                os.unlink(output_link)
             os.symlink(args.output_log, output_link)
 
         return rc