Philippe Mathieu-Daudé
11a82d1429
qemu-iotests: Improve portability by searching bash in the $PATH
...
Bash is not always installed as /bin/bash. In particular on OpenBSD,
the package installs it in /usr/local/bin.
Use the 'env' shebang to search bash in the $PATH.
Patch created mechanically by running:
$ git grep -lE '#! ?/bin/bash' -- tests/qemu-iotests \
| while read f; do \
sed -i 's|^#!.\?/bin/bash$|#!/usr/bin/env bash|' $f; \
done
Reviewed-by: Eric Blake <eblake@redhat.com >
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com >
Signed-off-by: Kevin Wolf <kwolf@redhat.com >
2019-03-08 12:26:45 +01:00
Mao Zhongyi
bf22957309
qemu-iotests: remove unused variable 'here'
...
Running
git grep '\$here' tests/qemu-iotests
has 0 hits, which means we are setting a variable that has
no use. It appears that commit e8f8624d removed the last
use. So execute the following cmd to remove all of
the 'here=...' lines as dead code.
sed -i '/^here=/d' $(git grep -l '^here=' tests/qemu-iotests)
Cc: kwolf@redhat.com
Cc: mreitz@redhat.com
Cc: eblake@redhat.com
Suggested-by: Eric Blake <eblake@redhat.com >
Signed-off-by: Mao Zhongyi <maozhongyi@cmss.chinamobile.com >
Message-Id: <20181024094051.4470-3-maozhongyi@cmss.chinamobile.com >
Reviewed-by: Eric Blake <eblake@redhat.com >
[eblake: touch up commit message, reorder series, rebase to master]
Signed-off-by: Eric Blake <eblake@redhat.com >
2018-11-19 10:08:19 -06:00
Sascha Silbe
339f06a3bc
qemu-iotests: tests: do not set unused tmp variable
...
The previous commit removed the last usage of ${tmp} inside the tests
themselves; the only remaining users are sourced by check. So we can now
drop this variable from the tests.
Signed-off-by: Sascha Silbe <silbe@linux.vnet.ibm.com >
Reviewed-by: Bo Tu <tubo@linux.vnet.ibm.com >
Message-id: 1460472980-26319-4-git-send-email-silbe@linux.vnet.ibm.com
Reviewed-by: Max Reitz <mreitz@redhat.com >
Signed-off-by: Max Reitz <mreitz@redhat.com >
2016-04-15 17:56:56 +02:00
Stefan Hajnoczi
8d9eb33ca0
qemu-iotests: add test case 101 for short file I/O
...
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com >
Signed-off-by: Kevin Wolf <kwolf@redhat.com >
2014-08-22 11:01:12 +02:00