#!/bin/sh
set -e
-TESTDIR=$(readlink -f $(dirname $0))
-. $TESTDIR/framework
+TESTDIR="$(readlink -f "$(dirname "$0")")"
+. "$TESTDIR/framework"
setupenvironment
configarchitecture 'amd64' 'i386'
testnoautopkg() {
testempty aptmark showauto
- testempty aptcache showauto
+ testempty aptcache -q=1 showauto
testsuccessequal 'bar
dpkg
foo' aptmark showmanual
}
testfooisauto() {
testsuccessequal 'foo' aptmark showauto
- testsuccessequal 'foo' aptcache showauto
+ testsuccessequal 'foo' aptcache -q=1 showauto
testsuccessequal 'foo' aptmark showauto foo
- testsuccessequal 'foo' aptcache showauto foo
+ testsuccessequal 'foo' aptcache -q=1 showauto foo
testsuccessequal 'bar
dpkg' aptmark showmanual
testsuccessequal 'bar' aptmark showmanual bar
}
testmarkonpkgasauto() {
- testsuccess $1 $2 foo
+ testsuccess $1 -q=1 $2 foo
testfooisauto
- testsuccess $1 $2 foo
+ testsuccess $1 -q=1 $2 foo
testfooisauto
- testsuccess $1 $3 foo
+ testsuccess $1 -q=1 $3 foo
testnoautopkg
- testsuccess $1 $3 foo
+ testsuccess $1 -q=1 $3 foo
testnoautopkg
}