]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Remove .ii tests
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 28 Feb 2010 19:43:35 +0000 (20:43 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 28 Feb 2010 19:43:35 +0000 (20:43 +0100)
Removed .ii tests as some compilers (including newer versions of gcc) determine
which language to use based on .i/.ii extension, and C++ may not be installed.

test.sh

diff --git a/test.sh b/test.sh
index 870092906a8e7ea957516bc81379c1086855ddc0..787b320be83f32098613068de32b8bcc9058c182 100755 (executable)
--- a/test.sh
+++ b/test.sh
@@ -278,16 +278,6 @@ base_tests() {
     checkstat 'cache hit (preprocessed)' 10
     checkstat 'cache miss' 38
 
-    testname="direct .ii file"
-    mv test1.i test1.ii
-    $CCACHE_COMPILE -c test1.ii
-    checkstat 'cache hit (preprocessed)' 10
-    checkstat 'cache miss' 39
-
-    $CCACHE_COMPILE -c test1.ii
-    checkstat 'cache hit (preprocessed)' 11
-    checkstat 'cache miss' 39
-
     testname="no object file"
     cat <<'EOF' >test_no_obj.c
 int test_no_obj;