Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit e55ab1f

Browse files
committed
verbose ctest output
1 parent 62f0f88 commit e55ab1f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/travis_script_cpp.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ make lint
1616

1717
if [ $TRAVIS_OS_NAME == "linux" ]; then
1818
make -j4 || exit 1
19-
ctest -L unittest || { cat $TRAVIS_BUILD_DIR/parquet-build/Testing/Temporary/LastTest.log; exit 1; }
19+
ctest -VV -L unittest || { cat $TRAVIS_BUILD_DIR/parquet-build/Testing/Temporary/LastTest.log; exit 1; }
2020
sudo pip install cpp_coveralls
2121
export PARQUET_ROOT=$TRAVIS_BUILD_DIR
2222
$TRAVIS_BUILD_DIR/ci/upload_coverage.sh
2323
else
2424
make -j4 || exit 1
25-
ctest -L unittest || { cat $TRAVIS_BUILD_DIR/parquet-build/Testing/Temporary/LastTest.log; exit 1; }
25+
ctest -VV -L unittest || { cat $TRAVIS_BUILD_DIR/parquet-build/Testing/Temporary/LastTest.log; exit 1; }
2626
fi
2727

2828
popd

0 commit comments

Comments
 (0)