travis: reenable VERBOSE, I broke it / don't run t.archos (yet)

This commit is contained in:
Jonathan Neuschäfer 2014-06-15 12:08:19 +02:00
parent 8f49aad1f7
commit 8d84f4b30f

View File

@ -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