summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2022-11-03 21:42:06 +0100
committerJoel Rosdahl <joel@rosdahl.net>2022-11-03 22:10:48 +0100
commitdfe680320c9208d172af1f22ccb065fa7bc5ad6f (patch)
tree0051e813ec1201e422374524ae7046e25ddcb5d1 /test
parent8ac381c2ac5209554592bbccf4431c749690a1c2 (diff)
downloadccache-dfe680320c9208d172af1f22ccb065fa7bc5ad6f.tar.gz
test: Silence progress messages from CCACHE_UMASK test
Diffstat (limited to 'test')
-rw-r--r--test/suites/base.bash6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/suites/base.bash b/test/suites/base.bash
index 0ce9ce6e..2d14c958 100644
--- a/test/suites/base.bash
+++ b/test/suites/base.bash
@@ -1069,19 +1069,19 @@ if ! $HOST_OS_WINDOWS; then
export CCACHE_UMASK=002
export CCACHE_TEMPDIR=$CCACHE_DIR/tmp
- $CCACHE -C
+ $CCACHE -C >/dev/null
expect_perm "$CCACHE_DIR" drwxrwxr-x
expect_perm "$CCACHE_DIR/0" drwxrwxr-x
expect_perm "$CCACHE_DIR/0/stats" -rw-rw-r--
rm -rf $CCACHE_DIR
- $CCACHE -c
+ $CCACHE -c >/dev/null
expect_perm "$CCACHE_DIR" drwxrwxr-x
expect_perm "$CCACHE_DIR/0" drwxrwxr-x
expect_perm "$CCACHE_DIR/0/stats" -rw-rw-r--
rm -rf $CCACHE_DIR
- $CCACHE -z
+ $CCACHE -z >/dev/null
expect_perm "$CCACHE_DIR" drwxrwxr-x
expect_perm "$CCACHE_DIR/0" drwxrwxr-x
expect_perm "$CCACHE_DIR/0/stats" -rw-rw-r--