summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2015-02-26 13:05:30 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2015-02-26 13:05:30 +0100
commit4c92fba28b99ed8d5acb768772623444be75de0c (patch)
tree2606fe85290602e6c4df651467f2ef7fa81bbd15
parentac03b80cd3de7455bced848d12c84d9e214cb486 (diff)
downloadATCD-4c92fba28b99ed8d5acb768772623444be75de0c.tar.gz
The coverall output is too long for the console, so redirect it to a file
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3f228e1e503..a8b5096b0f3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -59,4 +59,5 @@ script:
- perl $ACE_ROOT/bin/auto_run_tests.pl -l $TAO_ROOT/bin/travis-ci.lst
after_success:
- - if [ "$COVERAGE" == "1" ]; then coveralls --exclude lib --exclude tests --gcov-options '\-lp'; fi
+ - if [ "$COVERAGE" == "1" ]; then coveralls --exclude lib --exclude tests --gcov-options '\-lp' >coverall_1.txt 2>coverall_2.txt; fi
+ - if [ "$COVERAGE" == "1" ]; then cat coverall_2.txt; fi