Re: [PATCH v2 4/5] qemu-iotests: Merge FilePaths and FilePath

2020-08-25 Thread Max Reitz
On 21.08.20 01:54, Nir Soffer wrote: > FilePath creates now one temporary file: > > with FilePath("a") as a: > > Or more: > > with FilePath("a", "b", "c") as (a, b, c): > > This is also the behavior of the file_path() helper, used by some of the > tests. Now we have only 2 helpers for

[PATCH v2 4/5] qemu-iotests: Merge FilePaths and FilePath

2020-08-20 Thread Nir Soffer
FilePath creates now one temporary file: with FilePath("a") as a: Or more: with FilePath("a", "b", "c") as (a, b, c): This is also the behavior of the file_path() helper, used by some of the tests. Now we have only 2 helpers for creating temporary files instead of 3. Signed-off-by: