From: Joel Rosdahl Date: Sun, 28 Feb 2010 19:43:35 +0000 (+0100) Subject: Remove .ii tests X-Git-Tag: v3.0pre0~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=162e2f4db33062a202c65be4c66cfb51dae13ab6;p=thirdparty%2Fccache.git Remove .ii tests 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. --- diff --git a/test.sh b/test.sh index 870092906..787b320be 100755 --- 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;