Improve error output of bad lib CI test

pull/4596/head
Jimmy Brisson 2017-06-09 10:30:35 -05:00 committed by adbridge
parent 3b0ee9aa8d
commit 253c7e99ed
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ script:
# The strange command below asserts that there are exactly 0 libraries that do # The strange command below asserts that there are exactly 0 libraries that do
# not start with lib # 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 - make -C events/equeue test clean
- PYTHONPATH=. python tools/test/config_test/config_test.py - PYTHONPATH=. python tools/test/config_test/config_test.py
- PYTHONPATH=. python tools/test/build_api/build_api_test.py - PYTHONPATH=. python tools/test/build_api/build_api_test.py