File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 2
2
- " 2.7"
3
3
4
4
script :
5
- - mkdir BUILD && doxygen doxyfile_options
5
+ - mkdir BUILD
6
+ # Assert that the Doxygen build produced no warnings.
7
+ # The strange command below asserts that the Doxygen command had an
8
+ # output of zero length
6
9
- |
7
- [ -z "`doxygen doxyfile_options 2>&1`" ]
10
+ doxygen doxyfile_options 2>&1 | tee BUILD/doxygen.out && [ ! -s BUILD/doxygen.out ]
11
+ # Assert that all binary libraries are named correctly
12
+ # The strange command below asserts that there are exactly 0 libraries that do
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 ]
8
16
- make -C events/equeue test clean
9
17
- PYTHONPATH=. python tools/test/config_test/config_test.py
10
18
- PYTHONPATH=. python tools/test/build_api/build_api_test.py
You can’t perform that action at this time.
0 commit comments