diff options
author | Max Reitz <mreitz@redhat.com> | 2019-10-17 15:31:55 +0200 |
---|---|---|
committer | Max Reitz <mreitz@redhat.com> | 2019-10-28 11:22:31 +0100 |
commit | ecc47cb47ccd3da0ad1375d2696997192f953ca3 (patch) | |
tree | 079515347004478b9c8a46a5dd0d99ad29724eab /tests | |
parent | f0e24942fc93708aa971bf4142b97b40d198700c (diff) | |
download | qemu-ecc47cb47ccd3da0ad1375d2696997192f953ca3.zip qemu-ecc47cb47ccd3da0ad1375d2696997192f953ca3.tar.gz qemu-ecc47cb47ccd3da0ad1375d2696997192f953ca3.tar.bz2 |
iotests: Drop TEST_DIR filter from _filter_nbd
Sockets should be placed into $SOCK_DIR instead of $TEST_DIR, so remove
the $TEST_DIR filter from _filter_nbd.
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-id: 20191017133155.5327-24-mreitz@redhat.com
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qemu-iotests/common.filter | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/qemu-iotests/common.filter b/tests/qemu-iotests/common.filter index 0ee6042..f870e00 100644 --- a/tests/qemu-iotests/common.filter +++ b/tests/qemu-iotests/common.filter @@ -221,7 +221,6 @@ _filter_nbd() # Filter out the TCP port number since this changes between runs. $SED -e '/nbd\/.*\.c:/d' \ -e 's#127\.0\.0\.1:[0-9]*#127.0.0.1:PORT#g' \ - -e "s#?socket=$TEST_DIR#?socket=TEST_DIR#g" \ -e "s#?socket=$SOCK_DIR#?socket=SOCK_DIR#g" \ -e 's#\(foo\|PORT/\?\|.sock\): Failed to .*$#\1#' } |