diff options
author | Kevin Wolf <kwolf@redhat.com> | 2017-04-13 19:19:51 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2017-04-27 15:39:49 +0200 |
commit | 69404d9e474e9df3d32fbab74b856d76acd77580 (patch) | |
tree | c8277c323cae98e20b7e1156fcb42ef055dd5777 /tests/qemu-iotests/145 | |
parent | 0042fd3663662c848aaff5c65b6880e545d94b18 (diff) | |
download | qemu-69404d9e474e9df3d32fbab74b856d76acd77580.zip |
qemu-iotests: Filter HMP readline escape characters
The only thing the escape characters achieve is making the reference
output unreadable and lines that are potentially so long that git
doesn't want to put them into an email any more. Let's filter them out.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/145')
-rwxr-xr-x | tests/qemu-iotests/145 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/qemu-iotests/145 b/tests/qemu-iotests/145 index 1eca0e8990..e6c6bc4a4f 100755 --- a/tests/qemu-iotests/145 +++ b/tests/qemu-iotests/145 @@ -43,7 +43,8 @@ _supported_proto generic _supported_os Linux _make_test_img 1M -echo quit | $QEMU -nographic -hda "$TEST_IMG" -incoming 'exec:true' -snapshot -serial none -monitor stdio | _filter_qemu +echo quit | $QEMU -nographic -hda "$TEST_IMG" -incoming 'exec:true' -snapshot -serial none -monitor stdio | + _filter_qemu | _filter_hmp # success, all done echo "*** done" |