Skip to content

Commit

Permalink
(lint) fixing shell
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Jul 24, 2024
1 parent 52f139e commit 5fbb0eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/developer/taptest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ echo "----------- taptest of: $DIR"
echo "----------------------------------------------------"
PGDATABASE="___vrp___taptest___"

dropdb ${PGFLAGS} --if-exists "${PGDATABASE}"
createdb ${PGFLAGS} "${PGDATABASE}"
dropdb "${PGFLAGS[@]}" --if-exists "${PGDATABASE}"
createdb "${PGFLAGS[@]}" "${PGDATABASE}"

pushd tools/testers/
psql "${PGFLAGS}" -f setup_db.sql -d "${PGDATABASE}"
psql "${PGFLAGS[@]}" -f setup_db.sql -d "${PGDATABASE}"
popd
pg_prove --recurse ${QUIET} ${PGFLAGS} -d "${PGDATABASE}" "${DIR}"
echo pg_prove --recurse ${QUIET} ${PGFLAGS} -d "${PGDATABASE}" "${DIR}"
#dropdb --if-exists "${PGFLAGS}" "${PGDATABASE}"
pg_prove --recurse "${QUIET}" "${PGFLAGS[@]}" -d "${PGDATABASE}" "${DIR}"
echo pg_prove --recurse "${QUIET}" "${PGFLAGS[@]}" -d "${PGDATABASE}" "${DIR}"
#dropdb --if-exists "${PGFLAGS[@]}" "${PGDATABASE}"

0 comments on commit 5fbb0eb

Please sign in to comment.