diff options
author | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2010-04-26 11:44:05 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-02-22 16:17:03 +0100 |
commit | 908eaf68027509f7bfc207c18770fdfc6144fcd0 (patch) | |
tree | 95667ba7c4f69bf2bb9ee84592502c3dfc453c53 /tests/qemu-iotests/021 | |
parent | 939e16407b7852c8ce41246e1afc26d893a7f9a8 (diff) | |
download | qemu-908eaf68027509f7bfc207c18770fdfc6144fcd0.zip qemu-908eaf68027509f7bfc207c18770fdfc6144fcd0.tar.gz qemu-908eaf68027509f7bfc207c18770fdfc6144fcd0.tar.bz2 |
qemu-iotests: explicitly use bash interpreter
The tests use bash language features like 'let', which aren't supported
by /bin/sh on systems that use a conservative shell like dash. This
patch changes the interpreter to /bin/bash.
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'tests/qemu-iotests/021')
-rwxr-xr-x | tests/qemu-iotests/021 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/021 b/tests/qemu-iotests/021 index c0241ae..eb61230 100755 --- a/tests/qemu-iotests/021 +++ b/tests/qemu-iotests/021 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Test handling of invalid patterns arguments to qemu-io # |