2
2
3
3
set -eux
4
4
5
- echo ' PostgreSQL installation ' && echo -en ' travis_fold:start:pg_install\\r'
5
+ echo -en ' travis_fold:start:pg_install\\r' && echo ' PostgreSQL installation '
6
6
7
7
sudo apt-get update
8
8
@@ -52,7 +52,7 @@ echo -en 'travis_fold:end:pg_install\\r'
52
52
53
53
# perform code analysis if necessary
54
54
if [ $CHECK_TYPE = " static" ]; then
55
- echo ' Static analysis ' && echo -en ' travis_fold:start:static_analysis\\r'
55
+ echo -en ' travis_fold:start:static_analysis\\r' && echo ' Static analysis '
56
56
57
57
if [ " $CC " = " clang" ]; then
58
58
sudo apt-get -y install -qq clang-$LLVM_VER
@@ -82,7 +82,7 @@ if [ $CHECK_TYPE = "static" ]; then
82
82
exit $status
83
83
fi
84
84
85
- echo ' Build extension ' && echo -en ' travis_fold:start:build_extension\\r'
85
+ echo -en ' travis_fold:start:build_extension\\r' && echo ' Build extension '
86
86
87
87
# build extension (using CFLAGS_SL for gcov)
88
88
if [ $CHECK_TYPE == " valgrind" ]; then
@@ -99,7 +99,7 @@ if [ $status -ne 0 ]; then exit $status; fi
99
99
100
100
echo -en ' travis_fold:end:build_extension\\r'
101
101
102
- echo ' Run tests ' && echo -en ' travis_fold:start:run_tests\\r'
102
+ echo -en ' travis_fold:start:run_tests\\r' && echo ' Run tests '
103
103
104
104
# enable core dumps and specify their path
105
105
ulimit -c unlimited -S
@@ -132,7 +132,7 @@ $pg_ctl_path -D $CLUSTER_PATH stop -l postgres.log -w
132
132
133
133
echo -en ' travis_fold:end:run_tests\\r'
134
134
135
- echo ' Check output ' && echo -en ' travis_fold:start:output\\r'
135
+ echo -en ' travis_fold:start:output\\r' && echo ' Check output '
136
136
137
137
# show diff if it exists
138
138
if test -f regression.diffs; then cat regression.diffs; fi
157
157
158
158
echo -en ' travis_fold:end:output\\r'
159
159
160
- echo ' Coverage check ' && echo -en ' travis_fold:start:coverage\\r'
160
+ echo -en ' travis_fold:start:coverage\\r' && echo ' Coverage check '
161
161
162
162
# generate *.gcov files
163
163
if [ $CC = " clang" ]; then
0 commit comments