On 08.05.19 15:00, Thomas Huth wrote:
> On 08/05/2019 14.55, Max Reitz wrote:
>> This patch makes 192 clean up the qemu command FIFOs, the qemu PID file,
>> and the NBD socket file.
>>
>> Reported by: Thomas Huth <thuth@redhat.com>
>> Signed-off-by: Max Reitz <mreitz@redhat.com>
>> ---
>> tests/qemu-iotests/192 | 4 +++-
>> 1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/tests/qemu-iotests/192 b/tests/qemu-iotests/192
>> index 158086f9d2..37bd975eec 100755
>> --- a/tests/qemu-iotests/192
>> +++ b/tests/qemu-iotests/192
>> @@ -29,7 +29,9 @@ status=1 # failure is the default!
>>
>> _cleanup()
>> {
>> - _cleanup_test_img
>> + _cleanup_qemu
>> + rm -f "$TEST_DIR/nbd"
>> + _cleanup_test_img
>> }
>> trap "_cleanup; exit \$status" 0 1 2 3 15
>
> Thanks a lot! ... but Kevin was a little bit faster already:
>
> https://lists.gnu.org/archive/html/qemu-devel/2019-05/msg01732.html
Dang. At least it looks basically the same, so that’s good. O:-)
Max