mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #4597 from theotherjimmy/travis-upcase-asm
Assert that all assembly files are named correctly in travispull/4603/head
commit
d121a43e37
|
@ -13,6 +13,11 @@ script:
|
|||
# not start with lib
|
||||
- |
|
||||
find "(" -name "*.a" -or -name "*.ar" ")" -and -not -name "lib*" | tee BUILD/badlibs | sed -e "s/^/Bad library name found: /" && [ ! -s BUILD/badlibs ]
|
||||
# Assert that all assebler files are named correctly
|
||||
# The strange command below asserts that there are exactly 0 libraries that do
|
||||
# end with .s
|
||||
- |
|
||||
find -name "*.s" | tee BUILD/badasm | sed -e "s/^/Bad Assembler file name found: /" && [ ! -s BUILD/badasm ]
|
||||
- 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
|
||||
|
|
Loading…
Reference in New Issue