We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 226af54 commit 307a2ffCopy full SHA for 307a2ff
.travis.yml
@@ -13,6 +13,11 @@ script:
13
# not start with lib
14
- |
15
find "(" -name "*.a" -or -name "*.ar" ")" -and -not -name "lib*" | tee BUILD/badlibs | sed -e "s/^/Bad library name found: /" && [ ! -s BUILD/badlibs ]
16
+# Assert that all assebler files are named correctly
17
+# The strange command below asserts that there are exactly 0 libraries that do
18
+# end with .s
19
+ - |
20
+ find -name "*.s" | tee BUILD/badasm | sed -e "s/^/Bad Assembler file name found: /" && [ ! -s BUILD/badasm ]
21
- make -C events/equeue test clean
22
- PYTHONPATH=. python tools/test/config_test/config_test.py
23
- PYTHONPATH=. python tools/test/build_api/build_api_test.py
0 commit comments