We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c696e commit 36e85d8Copy full SHA for 36e85d8
travis/pg-travis-test.sh
@@ -119,6 +119,9 @@ fi
119
# run regression tests
120
PGPORT=55435 PGUSER=$USER PG_CONFIG=$config_path make installcheck USE_PGXS=1 || status=$?
121
122
+# stop cluster
123
+$pg_ctl_path -D $CLUSTER_PATH stop -l postgres.log -w
124
+
125
# show diff if it exists
126
if test -f regression.diffs; then cat regression.diffs; fi
127
@@ -140,9 +143,6 @@ for corefile in $(find /tmp/ -name '*.core' 2>/dev/null) ; do
140
143
gdb --batch --quiet -ex "thread apply all bt full" -ex "quit" $binary $corefile
141
144
done
142
145
-# stop cluster
-$pg_ctl_path -D $CLUSTER_PATH stop -l postgres.log -w
-
146
#generate *.gcov files
147
if [ $CHECK_TYPE == "valgrind" ] && [ $CC = "clang" ]; then
148
bash <(curl -s https://codecov.io/bash) -x "llvm-cov gcov"
0 commit comments