Skip to content

Commit

Permalink
Test with verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot committed Jun 26, 2013
1 parent 6c9c84a commit 116e832
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion bin/ci/script.sh
Expand Up @@ -3,6 +3,15 @@
source ./bin/ci/common.sh
mkdir -p _build
cd _build

echo "$(tmstamp) *** script::cmake-config starting $(date) ***"
cmake ..
echo "$(tmstamp) *** script::cmake-config finished $(date) ***"

echo "$(tmstamp) *** script::cmake-build make -j ${NUMTHREADS} $(date) ***"
make -j ${NUMTHREADS}
make test
echo "$(tmstamp) *** script::cmake-build finished $(date) ***"

echo "$(tmstamp) *** script::cmake-test starting $(date) ***"
ctest -V --output-on-failure .
echo "$(tmstamp) *** script::cmake-test finished $(date) ***"

0 comments on commit 116e832

Please sign in to comment.