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