diff options
| -rw-r--r-- | .travis.yml | 16 | 
1 files changed, 9 insertions, 7 deletions
| diff --git a/.travis.yml b/.travis.yml index 8baaea8..143a295 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,18 +43,20 @@ after_failure:  after_success:    - llvm-config-4.0 --has-rtti    - gcc -v -  - ./mutator-lvl0 -SysHeader=false -MainOnly=true ./test/testFuncs1.c ./test/testFuncs2.c ./test/testFuncs3.c -- -std=c90 -I/usr/lib/gcc/x86_64-linux-gnu/4.9/include -I/usr/include -I/usr/include/linux -Wall +  - ./mutator-lvl0 -SysHeader=false -MainOnly=true ./test/testFuncs1.c ./test/testFuncs2.c ./test/testFuncs3.c -- -std=c90 -I/usr/lib/gcc/x86_64-linux-gnu/4.9/include -I/usr/include -I/usr/include/linux -Wall > /dev/null    - make clean    - make mutator-lvl0 CXX=clang-4.0 LLVM_CONF=llvm-config-4.0 BUILD_MODE=COV_GNU -j2 -  - echo "deb http://old-releases.ubuntu.com/ubuntu/ hardy universe" | sudo tee -a /etc/apt/sources.list -  - sudo apt-get update -y +    #- echo "deb http://old-releases.ubuntu.com/ubuntu/ hardy universe" | sudo tee -a /etc/apt/sources.list +    #- sudo apt-get update -y    #- sudo apt-get install gcc-4.2 g++-4.2    #- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.2 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.2    - make install -  - ./mutator-lvl0 -SysHeader=false -MainOnly=true ./test/testFuncs1.c ./test/testFuncs2.c -- -std=c90 -I/usr/lib/gcc/x86_64-linux-gnu/4.2/include -I/usr/include -Wall > /dev/null -  - coveralls --exclude ./json --exclude ./tinyxml2 --exclude-pattern 'clang' --exclude-pattern 'llvm' -  - gcc -E - <<< '#include<stddef.h>' -  - gcc -E - <<< '#include<assert.h>' +  - ./mutator-lvl0 -SysHeader=false -MainOnly=true ./test/testFuncs1.c ./test/testFuncs2.c ./test/testFuncs3.c -- -std=c90 -I/usr/lib/gcc/x86_64-linux-gnu/4.2/include -I/usr/include -I/usr/include/linux -Wall > /dev/null +  - gcov -v +  - gcc -v +    #- coveralls --exclude ./json --exclude ./tinyxml2 --exclude-pattern 'clang' --exclude-pattern 'llvm' +    #- gcc -E - <<< '#include<stddef.h>' +    #- gcc -E - <<< '#include<assert.h>'    - ls    - ulimit -a    - find . -maxdepth 1 -name "core*" | 
