summaryrefslogtreecommitdiff
path: root/src/exchangedb/test_idempotency.sh
blob: 6ab5d13322e2687d0d788162838e04c507e02953 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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
echo "Test PASSED"
exit 0