summaryrefslogtreecommitdiff
path: root/src/exchangedb/test_idempotency.sh
blob: 1f42e67aae68b0c37678a789beafda5be06b43f1 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# This file is in the public domain.
set -eu
echo "Initializing DB"
taler-exchange-dbinit -r test-exchange-db-postgres.conf
echo "Re-initializing DB"
taler-exchange-dbinit test-exchange-db-postgres.conf
echo "Re-loading procedures"
psql talercheck < procedures.sql
exit 0