Check for IAR libraries as well

pull/4596/head
Jimmy Brisson 2017-06-12 11:10:23 -05:00 committed by adbridge
parent 253c7e99ed
commit 272fe78b90
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 | sed -e "s/^/Bad library name found: /" && [ ! -s BUILD/badlibs ]
find "(" -name "*.a" -or -name "*.ar" ")" -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