summaryrefslogtreecommitdiffstats
path: root/tests/qemu-iotests/common.config
diff options
context:
space:
mode:
authorPaolo Bonzini2017-09-12 16:44:52 +0200
committerKevin Wolf2017-10-06 16:28:58 +0200
commit48259488aa0aa05047a27f6b53a8df0111e32472 (patch)
tree81595457a71422d70b706871207b96309d7b9da5 /tests/qemu-iotests/common.config
parentqemu-iotests: get rid of AWK_PROG (diff)
downloadqemu-48259488aa0aa05047a27f6b53a8df0111e32472.tar.gz
qemu-48259488aa0aa05047a27f6b53a8df0111e32472.tar.xz
qemu-48259488aa0aa05047a27f6b53a8df0111e32472.zip
qemu-iotests: move "check" code out of common.rc
Some functions in common.rc are never used by the tests. Move them out of that file and into common, which is already included only by "check". Code that actually *is* common to "check" and tests can be placed in common.config. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/common.config')
-rw-r--r--tests/qemu-iotests/common.config12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/qemu-iotests/common.config b/tests/qemu-iotests/common.config
index 0f571d46eb..91da65f3dc 100644
--- a/tests/qemu-iotests/common.config
+++ b/tests/qemu-iotests/common.config
@@ -27,6 +27,9 @@ export PWD=`pwd`
export _QEMU_HANDLE=0
+# make sure we have a standard umask
+umask 022
+
# $1 = prog to look for, $2* = default pathnames if not found in $PATH
set_prog_path()
{
@@ -49,6 +52,15 @@ set_prog_path()
return 1
}
+_optstr_add()
+{
+ if [ -n "$1" ]; then
+ echo "$1,$2"
+ else
+ echo "$2"
+ fi
+}
+
_fatal()
{
echo "$*"