diff mbox series

qemu iotest 192 does not clean up correctly

Message ID aac34cba-a184-f059-20f1-fb1e7e219d0b@redhat.com (mailing list archive)
State New, archived
Headers show
Series qemu iotest 192 does not clean up correctly | expand

Commit Message

Thomas Huth May 8, 2019, 8:14 a.m. UTC
I've ran into this failure today:

140 0s ... - output mismatch (see 140.out.bad)

... and indeed, there were lots of stale qmp-in-* and qmp-out-*
files in my scratch directory, ultimately causing the above failure
after a couple of days.

After some more testing, it seems like test 192 is not cleaning up
correctly:

$ ls scratch/
$ ./check -qcow2 192
[...]
192 0s ...
Passed all 1 tests
$ ls scratch/
nbd  qemu-0.pid  qmp-in-8772_0  qmp-out-8772_0

Any ideas how to fix this in a clean way (e.g. simply add a
"rm -f scratch/..." at the end of the script) ?

 Thomas

Comments

Max Reitz May 8, 2019, 12:40 p.m. UTC | #1
On 08.05.19 10:14, Thomas Huth wrote:
> 
> I've ran into this failure today:
> 
> 140 0s ... - output mismatch (see 140.out.bad)
> --- /home/thuth/devel/qemu/tests/qemu-iotests/140.out	2019-05-07 17:57:08.000000000 +0200
> +++ /home/thuth/tmp/qemu-build/tests/qemu-iotests/140.out.bad	2019-05-08 07:19:23.000000000 +0200
> @@ -10,6 +10,8 @@
>  {"return": {}}
>  qemu-io: can't open device nbd+unix:///drv?socket=TEST_DIR/nbd: Requested export not available
>  server reported: export 'drv' not present
> +mkfifo: cannot create fifo '/home/thuth/tmp/qemu-build/tests/qemu-iotests/scratch/qmp-out-27628_0': File exists
> +mkfifo: cannot create fifo '/home/thuth/tmp/qemu-build/tests/qemu-iotests/scratch/qmp-in-27628_0': File exists
>  {"return": {}}
>  {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false, "reason": "host-qmp-quit"}}
>  *** done
> 
> ... and indeed, there were lots of stale qmp-in-* and qmp-out-*
> files in my scratch directory, ultimately causing the above failure
> after a couple of days.
> 
> After some more testing, it seems like test 192 is not cleaning up
> correctly:
> 
> $ ls scratch/
> $ ./check -qcow2 192
> [...]
> 192 0s ...
> Passed all 1 tests
> $ ls scratch/
> nbd  qemu-0.pid  qmp-in-8772_0  qmp-out-8772_0
> 
> Any ideas how to fix this in a clean way (e.g. simply add a
> "rm -f scratch/..." at the end of the script) ?

I think it’s just lacking a _cleanup_qemu.

Max
diff mbox series

Patch

--- /home/thuth/devel/qemu/tests/qemu-iotests/140.out	2019-05-07 17:57:08.000000000 +0200
+++ /home/thuth/tmp/qemu-build/tests/qemu-iotests/140.out.bad	2019-05-08 07:19:23.000000000 +0200
@@ -10,6 +10,8 @@ 
 {"return": {}}
 qemu-io: can't open device nbd+unix:///drv?socket=TEST_DIR/nbd: Requested export not available
 server reported: export 'drv' not present
+mkfifo: cannot create fifo '/home/thuth/tmp/qemu-build/tests/qemu-iotests/scratch/qmp-out-27628_0': File exists
+mkfifo: cannot create fifo '/home/thuth/tmp/qemu-build/tests/qemu-iotests/scratch/qmp-in-27628_0': File exists
 {"return": {}}
 {"timestamp": {"seconds":  TIMESTAMP, "microseconds":  TIMESTAMP}, "event": "SHUTDOWN", "data": {"guest": false, "reason": "host-qmp-quit"}}
 *** done