]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
test: Silence stray output
authorJoel Rosdahl <joel@rosdahl.net>
Mon, 20 Sep 2021 05:36:51 +0000 (07:36 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Mon, 20 Sep 2021 05:36:51 +0000 (07:36 +0200)
test/suites/config.bash

index aaa4747868ed0057b83d1d957422965d2f87f149..97da52c75fa473007e44e00d3994ee1e204fa937 100644 (file)
@@ -4,8 +4,8 @@ SUITE_config() {
 
     export CCACHE_MAXSIZE="40"
 
-    $CCACHE --max-size "75"
-    $CCACHE --show-config > config.txt
+    $CCACHE --max-size "75" >/dev/null
+    $CCACHE --show-config >config.txt
 
     expect_contains config.txt "(environment) max_size = 40"
 }