Re: [Qemu-devel] [PATCH] qemu-iotests: stop using /tmp directly

2014-08-25 Thread Fam Zheng
On Fri, 08/22 13:25, Peter Wu wrote: > Before this patch you could not run multiple tests concurrently as they > might clobber each other test files. This patch solves that by using > random temporary directory instead of `/tmp` (for writing output in the > individual tests and valgrind logs). > >

Re: [Qemu-devel] [PATCH] qemu-iotests: stop using /tmp directly

2014-08-25 Thread Benoît Canet
The Sunday 24 Aug 2014 à 21:54:51 (+0200), Peter Wu wrote : > On Friday 22 August 2014 20:58:34 Benoît Canet wrote: > > The Friday 22 Aug 2014 à 13:25:43 (+0200), Peter Wu wrote : > > > Before this patch you could not run multiple tests concurrently as they > > > might clobber each other test files

Re: [Qemu-devel] [PATCH] qemu-iotests: stop using /tmp directly

2014-08-24 Thread Peter Wu
On Friday 22 August 2014 20:58:34 Benoît Canet wrote: > The Friday 22 Aug 2014 à 13:25:43 (+0200), Peter Wu wrote : > > Before this patch you could not run multiple tests concurrently as they > > might clobber each other test files. This patch solves that by using > > random temporary directory ins

Re: [Qemu-devel] [PATCH] qemu-iotests: stop using /tmp directly

2014-08-22 Thread Benoît Canet
The Friday 22 Aug 2014 à 13:25:43 (+0200), Peter Wu wrote : > Before this patch you could not run multiple tests concurrently as they > might clobber each other test files. This patch solves that by using > random temporary directory instead of `/tmp` (for writing output in the > individual tests a

[Qemu-devel] [PATCH] qemu-iotests: stop using /tmp directly

2014-08-22 Thread Peter Wu
Before this patch you could not run multiple tests concurrently as they might clobber each other test files. This patch solves that by using random temporary directory instead of `/tmp` (for writing output in the individual tests and valgrind logs). Furthermore, this patch stops removing everythin