diff options
author | Mao Zhongyi | 2018-10-24 11:40:50 +0200 |
---|---|---|
committer | Eric Blake | 2018-11-19 17:08:19 +0100 |
commit | bf22957309369cf6f642e715ff6c470671920e7e (patch) | |
tree | 9b40901b795a32a29b51e347729f3d5e5648cb13 /tests/qemu-iotests/135 | |
parent | Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (diff) | |
download | qemu-bf22957309369cf6f642e715ff6c470671920e7e.tar.gz qemu-bf22957309369cf6f642e715ff6c470671920e7e.tar.xz qemu-bf22957309369cf6f642e715ff6c470671920e7e.zip |
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>
Diffstat (limited to 'tests/qemu-iotests/135')
-rwxr-xr-x | tests/qemu-iotests/135 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/qemu-iotests/135 b/tests/qemu-iotests/135 index ce608312f6..a18a0c7230 100755 --- a/tests/qemu-iotests/135 +++ b/tests/qemu-iotests/135 @@ -24,7 +24,6 @@ owner=jcody@redhat.com seq=`basename $0` echo "QA output created by $seq" -here=`pwd` status=1 # failure is the default! _cleanup() |