Re: [PATCH 12/22] tests/functional: switch over to using self.scratch_file()

2024-12-02 Thread Daniel P . Berrangé
On Mon, Dec 02, 2024 at 10:56:32AM +0100, Thomas Huth wrote: > On 29/11/2024 18.31, Daniel P. Berrangé wrote: > > Replace any instances of > > > >os.path.join(self.workdir, ".../...") > >self.workdir + "/.../..." > > > > with > > > >self.scratch_file("...", "...") > > > > which is m

Re: [PATCH 12/22] tests/functional: switch over to using self.scratch_file()

2024-12-02 Thread Thomas Huth
On 29/11/2024 18.31, Daniel P. Berrangé wrote: Replace any instances of os.path.join(self.workdir, ".../...") self.workdir + "/.../..." with self.scratch_file("...", "...") which is more compact and portable Signed-off-by: Daniel P. Berrangé --- ... diff --git a/tests/functional/

[PATCH 12/22] tests/functional: switch over to using self.scratch_file()

2024-11-29 Thread Daniel P . Berrangé
Replace any instances of os.path.join(self.workdir, ".../...") self.workdir + "/.../..." with self.scratch_file("...", "...") which is more compact and portable Signed-off-by: Daniel P. Berrangé --- tests/functional/qemu_test/linuxkernel.py | 7 ++- tests/functional/qemu_test/tuxr