Skip to content

Commit

Permalink
don't bother testing non-logbt if logbt is chosen (would be largely r…
Browse files Browse the repository at this point in the history
…edundant? )

References #4354

git-svn-id: http://svn.osgeo.org/postgis/trunk@17350 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
robe2 committed Mar 20, 2019
1 parent f1473b3 commit 06771ef
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions ci/debbie/postgis_regress.sh
Expand Up @@ -72,7 +72,16 @@ if [ "$?" != "0" ]; then
exit $?
fi

export RUNTESTFLAGS=-v
if [ "$MAKE_LOGBT" = "1" ]; then
echo "Running logbt testing"
bash ./ci/debbie/logbt -- make -j check RUNTESTFLAGS=--verbose
if [ "$?" != "0" ]; then
exit $?
fi
else
export RUNTESTFLAGS=-v
fi


make check

Expand All @@ -87,13 +96,7 @@ if [ "$MAKE_EXTENSION" = "1" ]; then
fi
fi

if [ "$MAKE_LOGBT" = "1" ]; then
echo "Running logbt testing"
bash ./ci/debbie/logbt -- make -j check RUNTESTFLAGS=--verbose
if [ "$?" != "0" ]; then
exit $?
fi
fi


if [ "$DUMP_RESTORE" = "1" ]; then
echo "Dum restore test"
Expand Down

0 comments on commit 06771ef

Please sign in to comment.