aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-06-17 18:26:31 -0700
committerMike Frysinger <vapier@gentoo.org>2012-06-23 17:26:05 -0400
commit99a9e43c31445464271502e60e99ed6e16a35566 (patch)
tree8e2231b4691a67e7b250eaf7f941d2409b221eb7 /tests
parentlibsandbox: create more defines for gcc attributes (diff)
downloadsandbox-99a9e43c31445464271502e60e99ed6e16a35566.tar.gz
sandbox-99a9e43c31445464271502e60e99ed6e16a35566.tar.bz2
sandbox-99a9e43c31445464271502e60e99ed6e16a35566.zip
tests: move disabling of sandbox verbose to common init
Since none of our tests care about the verbose output, move the disable to a common location so we don't have to do it on a more fine grained basis. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/atlocal.in2
-rwxr-xr-xtests/chmod-1.sh1
-rwxr-xr-xtests/chown-1.sh1
-rwxr-xr-xtests/fchmodat-1.sh1
-rwxr-xr-xtests/fchownat-2.sh1
5 files changed, 2 insertions, 4 deletions
diff --git a/tests/atlocal.in b/tests/atlocal.in
index 4cabcff..1addcf0 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -17,3 +17,5 @@ export SANDBOX_PREDICT=${SANDBOX_PREDICT%:/}
if [ "${AUTOTEST_PATH}" = "tests" ] ; then
AUTOTEST_PATH="src:tests"
fi
+
+export SANDBOX_VERBOSE=0
diff --git a/tests/chmod-1.sh b/tests/chmod-1.sh
index 89b57fe..f857eac 100755
--- a/tests/chmod-1.sh
+++ b/tests/chmod-1.sh
@@ -17,6 +17,5 @@ chmod-0 0 link 0666 || exit 1
# this *should* trigger a sandbox violation
adddeny $PWD/deny
export SANDBOX_LOG=$PWD/sb.log
-unset SANDBOX_VERBOSE
chmod-0 -1 link 0666 || exit 1
test -s sb.log
diff --git a/tests/chown-1.sh b/tests/chown-1.sh
index ef4de0e..4a4b778 100755
--- a/tests/chown-1.sh
+++ b/tests/chown-1.sh
@@ -17,6 +17,5 @@ chown-0 0 link ${SB_UID} ${SB_GID} || exit 1
# this *should* trigger a sandbox violation
adddeny $PWD/deny
export SANDBOX_LOG=$PWD/sb.log
-unset SANDBOX_VERBOSE
chown-0 -1 link ${SB_UID} ${SB_GID} || exit 1
test -s sb.log
diff --git a/tests/fchmodat-1.sh b/tests/fchmodat-1.sh
index 5db4365..570a2bf 100755
--- a/tests/fchmodat-1.sh
+++ b/tests/fchmodat-1.sh
@@ -17,6 +17,5 @@ fchmodat-0 0 AT_FDCWD link 0666 0 || exit 1
# this *should* trigger a sandbox violation
adddeny $PWD/deny
export SANDBOX_LOG=$PWD/sb.log
-unset SANDBOX_VERBOSE
fchmodat-0 -1 AT_FDCWD link 0666 0 || exit 1
test -s sb.log
diff --git a/tests/fchownat-2.sh b/tests/fchownat-2.sh
index 9fd68f0..5c67616 100755
--- a/tests/fchownat-2.sh
+++ b/tests/fchownat-2.sh
@@ -17,6 +17,5 @@ fchownat-0 0 AT_FDCWD link ${SB_UID} ${SB_GID} 0 || exit 1
# this *should* trigger a sandbox violation
adddeny $PWD/deny
export SANDBOX_LOG=$PWD/sb.log
-unset SANDBOX_VERBOSE
fchownat-0 -1 AT_FDCWD link ${SB_UID} ${SB_GID} 0 || exit 1
test -s sb.log