#!/bin/sh
set -e
-TESTDIR=$(readlink -f $(dirname $0))
-. $TESTDIR/framework
+TESTDIR="$(readlink -f "$(dirname "$0")")"
+. "$TESTDIR/framework"
setupenvironment
configarchitecture 'i386'
}
testfilemissing() {
- msgtest 'Test for non-existance of file' "$1"
+ msgtest 'Test for non-existence of file' "$1"
test -e "$1" && msgfail || msgpass
rm -f "$1"
}