]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
test: Silence progress messages from CCACHE_UMASK test
authorJoel Rosdahl <joel@rosdahl.net>
Thu, 3 Nov 2022 20:42:06 +0000 (21:42 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Thu, 3 Nov 2022 21:10:48 +0000 (22:10 +0100)
test/suites/base.bash

index 0ce9ce6e1d080d46866fcfa7f8974740b5288edd..2d14c958826daf06e78cf1cb3de9aacccb1bbb90 100644 (file)
@@ -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--