2013-12-13 09:59:52 -07:00
|
|
|
language: cpp
|
2014-07-08 13:15:57 -04:00
|
|
|
|
2013-12-13 09:59:52 -07:00
|
|
|
compiler:
|
2014-01-10 11:10:46 -08:00
|
|
|
- g++
|
2013-12-13 09:59:52 -07:00
|
|
|
- clang
|
2014-07-08 13:15:57 -04:00
|
|
|
|
2013-12-13 10:00:08 -08:00
|
|
|
before_install:
|
2014-01-10 11:10:46 -08:00
|
|
|
- sudo apt-get update -qq
|
2014-02-24 17:47:46 +02:00
|
|
|
- sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386
|
2014-07-08 13:15:57 -04:00
|
|
|
|
2014-06-17 19:54:16 -07:00
|
|
|
install:
|
|
|
|
- make gmp-bootstrap
|
|
|
|
- make gtest-bootstrap
|
2014-07-08 13:15:57 -04:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- WorkingDir=`pwd`
|
|
|
|
- cd test/encoder_binary_comparison
|
|
|
|
- ./run_PrepareAllTestData.sh 64
|
|
|
|
- cd ${WorkingDir}
|
|
|
|
|
|
|
|
env:
|
|
|
|
- TASK=UnitTest; TestParameter=""
|
2014-07-15 06:42:42 -04:00
|
|
|
- TASK=BinaryCompare; TestParameter=BA_MW_D.264
|
|
|
|
- TASK=BinaryCompare; TestParameter=CVPCMNL1_SVA_C.264
|
2014-07-08 13:15:57 -04:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
exclude:
|
|
|
|
- compiler: clang
|
2014-07-15 06:42:42 -04:00
|
|
|
env: TASK=BinaryCompare; TestParameter=BA_MW_D.264
|
2014-07-08 13:15:57 -04:00
|
|
|
- compiler: clang
|
2014-07-15 06:42:42 -04:00
|
|
|
env: TASK=BinaryCompare; TestParameter=CVPCMNL1_SVA_C.264
|
2014-06-17 19:54:16 -07:00
|
|
|
script:
|
2014-07-08 13:15:57 -04:00
|
|
|
- echo "currrent test is for ${TASK}"
|
|
|
|
- echo "test parameter is ${TestParameter}"
|
|
|
|
- ./run_Test.sh ${TASK} ${TestParameter}
|