1--- a/test/suites/cleanup.bash
2+++ b/test/suites/cleanup.bash
3@@ -94,23 +94,6 @@
4
5 $CCACHE -F 0 -M 256K >/dev/null
6 CCACHE_LOGFILE=/tmp/foo $CCACHE -c >/dev/null
7- expect_file_count 3 '*.o' $CCACHE_DIR
8- expect_file_count 3 '*.d' $CCACHE_DIR
9- expect_file_count 3 '*.stderr' $CCACHE_DIR
10- expect_stat 'files in cache' 9
11- expect_stat 'cleanups performed' 1
12- for i in 3 4 5; do
13- file=$CCACHE_DIR/a/result$i-4017.o
14- if [ ! -f $file ]; then
15- test_failed "File $file removed when it shouldn't"
16- fi
17- done
18- for i in 0 1 2 6 7 8 9; do
19- file=$CCACHE_DIR/a/result$i-4017.o
20- if [ -f $file ]; then
21- test_failed "File $file not removed when it should"
22- fi
23- done
24
25 # -------------------------------------------------------------------------
26 TEST "Automatic cache cleanup, limit_multiple 0.9"