Improve error output of bad lib CI test

pull/4516/head
Jimmy Brisson 2017-06-09 10:30:35 -05:00
parent 3161cf31d1
commit 0481a5b244
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
# 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