]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Add sloppy include_file_mtime to ivfsoverlay test (#868)
authorMichael Kruse <github@meinersbur.de>
Sun, 20 Jun 2021 19:19:52 +0000 (14:19 -0500)
committerGitHub <noreply@github.com>
Sun, 20 Jun 2021 19:19:52 +0000 (21:19 +0200)
Add CCACHE_SLOPPINESS=include_file_mtime to ivfsoverlay test. This is
possibly due to me using my self-compiled clang since it does not fail
with the version of Clang that comes with Ubuntu 20.04.

test/suites/ivfsoverlay.bash

index ca8822170338330222871b6b376c68378bd5fcea..eed47c30f0e1b4e03b974cc7b50ea4e544e3504f 100644 (file)
@@ -34,11 +34,11 @@ SUITE_ivfsoverlay() {
     # -------------------------------------------------------------------------
     TEST "with sloppy ivfsoverlay"
 
-    CCACHE_SLOPPINESS="$DEFAULT_SLOPPINESS ivfsoverlay" $CCACHE_COMPILE -ivfsoverlay test.yaml -c test.c
+    CCACHE_SLOPPINESS="$DEFAULT_SLOPPINESS include_file_mtime ivfsoverlay" $CCACHE_COMPILE -ivfsoverlay test.yaml -c test.c
     expect_stat 'cache hit (direct)' 0
     expect_stat 'cache miss' 1
 
-    CCACHE_SLOPPINESS="$DEFAULT_SLOPPINESS ivfsoverlay" $CCACHE_COMPILE -ivfsoverlay test.yaml -c test.c
+    CCACHE_SLOPPINESS="$DEFAULT_SLOPPINESS include_file_mtime ivfsoverlay" $CCACHE_COMPILE -ivfsoverlay test.yaml -c test.c
     expect_stat 'cache hit (direct)' 1
     expect_stat 'cache miss' 1
 }