iotests: Change coding style of _filter_nbd in 083

In order to be able to move _filter_nbd to common.filter in the next
patch, its coding style needs to be adapted to that of common.filter.
That means, we have to convert tabs to four spaces, adjust the alignment
of the last line (done with spaces already, assuming one tab equals
eight spaces), fix the line length of the comment, and add a line break
before the opening brace.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
Max Reitz 2016-01-25 19:41:10 +01:00
parent 05d0fce497
commit d1f9cd7084
1 changed files with 10 additions and 9 deletions

View File

@ -49,10 +49,11 @@ wait_for_tcp_port() {
done done
} }
_filter_nbd() { _filter_nbd()
# nbd.c error messages contain function names and line numbers that are prone {
# to change. Message ordering depends on timing between send and receive # nbd.c error messages contain function names and line numbers that are
# callbacks sometimes, making them unreliable. # prone to change. Message ordering depends on timing between send and
# receive callbacks sometimes, making them unreliable.
# #
# Filter out the TCP port number since this changes between runs. # Filter out the TCP port number since this changes between runs.
sed -e 's#^.*nbd/.*\.c:.*##g' \ sed -e 's#^.*nbd/.*\.c:.*##g' \