From 253c7e99ed538300b74a64abd39652a3eef65a1f Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Fri, 9 Jun 2017 10:30:35 -0500 Subject: [PATCH] Improve error output of bad lib CI test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 31ea76a95d..a69217dfd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ script: # The strange command below asserts that there are exactly 0 libraries that do # not start with lib - | - find -name "*.a" -and -not -name "lib*" | tee BUILD/badlibs && [ ! -s BUILD/badlibs ] + find -name "*.a" -and -not -name "lib*" | tee BUILD/badlibs | sed -e "s/^/Bad library name found: /" && [ ! -s BUILD/badlibs ] - make -C events/equeue test clean - PYTHONPATH=. python tools/test/config_test/config_test.py - PYTHONPATH=. python tools/test/build_api/build_api_test.py