Skip to content

Commit 0c8b6b7

Browse files
author
Dane Springmeyer
committed
more verbose output to test script
1 parent 2afd341 commit 0c8b6b7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

scripts/linux.sh

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,31 @@ sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
1010
sudo apt-get update -y
1111

1212
# install boost headers and g++ upgrades
13-
sudo apt-get -y install boost1.55 gcc-4.8 g++-4.8 gcc-4.7 g++-4.7
13+
sudo apt-get -y -qq install boost1.55 gcc-4.8 g++-4.8 gcc-4.7 g++-4.7
1414

1515
# run tests against g++ 4.7
1616
export CXX="g++-4.7"; export CC="gcc-4.7"
17+
echo 'running tests against g++ 4.7'
1718
make test
1819
make bench
1920
make clean
2021

2122
# run tests against g++ 4.8
2223
export CXX="g++-4.8"; export CC="gcc-4.8"
24+
echo 'running tests against g++ 4.8'
2325
make test
2426
make bench
2527
make clean
2628

2729
# compare object sizes against boost::variant
30+
echo 'comparing object sizes to boost::variant'
2831
make sizes /usr/include/boost/variant.hpp
2932
make clean
3033

3134
# test building with gyp
35+
echo 'testing build with gyp'
3236
make gyp
37+
38+
# set strictness back to normal
39+
# to avoid tripping up travis
40+
set +e +u

0 commit comments

Comments
 (0)