diff --git a/.travis.yml b/.travis.yml index 5154cdd984..dfa7e2972c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,8 @@ compiler: # Put different test categories in different jobs. This will also help keeping # the logs shorter than 10k lines (the maximum that's displayed). env: - - '"TESTS=t t.archos"' # core stuff + # TODO: run t.archos, once we have Linux tests in there. + - TESTS=t # core stuff - TESTS=t.asm # (dis)assemblers - TESTS=t.anal # analysis - TESTS=t.formats # file formats @@ -41,4 +42,5 @@ script: - make - sudo make install - cd radare2-regressions - - ./run_tests.sh $TESTS; test $? != 1 + # Run the tests, report only regressions (FAILED, exit value 1) as errors. + - VERBOSE=1 ./run_tests.sh $TESTS; test $? != 1