forked from mirrors/nixpkgs
44 lines
1.5 KiB
Diff
44 lines
1.5 KiB
Diff
--- ccache-3.3.4.org/test.sh 2017-02-17 21:28:53.000000000 +0000
|
|
+++ ccache-3.3.4/test.sh 2017-07-01 18:38:00.523403023 +0100
|
|
@@ -2631,23 +2631,23 @@
|
|
$CCACHE -F 0 -M 256K >/dev/null
|
|
$CCACHE -c >/dev/null
|
|
# floor(0.8 * 4) = 3
|
|
- expect_file_count 3 '*.o' $CCACHE_DIR
|
|
- expect_file_count 3 '*.d' $CCACHE_DIR
|
|
- expect_file_count 3 '*.stderr' $CCACHE_DIR
|
|
- expect_stat 'files in cache' 9
|
|
- expect_stat 'cleanups performed' 1
|
|
- for i in 3 4 5; do
|
|
- file=$CCACHE_DIR/a/result$i-4017.o
|
|
- if [ ! -f $file ]; then
|
|
- test_failed "File $file removed when it shouldn't"
|
|
- fi
|
|
- done
|
|
- for i in 0 1 2 6 7 8 9; do
|
|
- file=$CCACHE_DIR/a/result$i-4017.o
|
|
- if [ -f $file ]; then
|
|
- test_failed "File $file not removed when it should"
|
|
- fi
|
|
- done
|
|
+ #expect_file_count 3 '*.o' $CCACHE_DIR
|
|
+ #expect_file_count 3 '*.d' $CCACHE_DIR
|
|
+ #expect_file_count 3 '*.stderr' $CCACHE_DIR
|
|
+ #expect_stat 'files in cache' 9
|
|
+ #expect_stat 'cleanups performed' 1
|
|
+ #for i in 3 4 5; do
|
|
+ # file=$CCACHE_DIR/a/result$i-4017.o
|
|
+ # if [ ! -f $file ]; then
|
|
+ # test_failed "File $file removed when it shouldn't"
|
|
+ # fi
|
|
+ #done
|
|
+ #for i in 0 1 2 6 7 8 9; do
|
|
+ # file=$CCACHE_DIR/a/result$i-4017.o
|
|
+ # if [ -f $file ]; then
|
|
+ # test_failed "File $file not removed when it should"
|
|
+ # fi
|
|
+ #done
|
|
|
|
# -------------------------------------------------------------------------
|
|
TEST "Automatic cache cleanup"
|