Skip to content

Commit 1b28e79

Browse files
authored
Merge pull request #1790 from peternewman/0.10-lib-rt
Minor but useful improvements
2 parents 02b8ab7 + 279e926 commit 1b28e79

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.travis-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ elif [[ $TASK = 'coverage' ]]; then
200200
make;
201201
travis_fold end "make"
202202
travis_fold start "make_check"
203-
make check;
203+
make check VERBOSE=1;
204204
travis_fold end "make_check"
205205
elif [[ $TASK = 'coverity' ]]; then
206206
# Run Coverity Scan unless token is zero length

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,8 +518,6 @@ install:
518518
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$CPPUNIT" != "1.14" ]; then brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/e6e43cf6a3%5E/Formula/cppunit.rb; fi # install a slightly older cppunit, as latest needs C++11 support
519519

520520
after_failure:
521-
- if [ -f ${TRAVIS_BUILD_DIR}/ola-*/_build/test-suite.log ]; then cat ${TRAVIS_BUILD_DIR}/ola-*/_build/test-suite.log; fi
522-
- if [ -f ${TRAVIS_BUILD_DIR}/ola-*/_build/sub/test-suite.log ]; then cat ${TRAVIS_BUILD_DIR}/ola-*/_build/sub/test-suite.log; fi
523521
- if [ -f ${TRAVIS_BUILD_DIR}/config.log ]; then cat ${TRAVIS_BUILD_DIR}/config.log; fi
524522
- if [ -f ${TRAVIS_BUILD_DIR}/ola-*/_build/config.log ]; then cat ${TRAVIS_BUILD_DIR}/ola-*/_build/config.log; fi
525523
- if [ -f ${TRAVIS_BUILD_DIR}/ola-*/_build/sub/config.log ]; then cat ${TRAVIS_BUILD_DIR}/ola-*/_build/sub/config.log; fi

include/ola/io/BigEndianStream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class BigEndianOutputStreamAdaptor: public BigEndianOutputStreamInterface {
164164

165165

166166
/**
167-
* A Big Endian Input stream that wraps an OutputBufferInterface
167+
* A Big Endian Output stream that wraps an OutputBufferInterface
168168
*/
169169
class BigEndianOutputStream: public BigEndianOutputStreamInterface {
170170
public:

0 commit comments

Comments
 (0)