blob: 676ba7fb79908c9ca98c4f4bf928f86850da9a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
# Script to generate the basic database for auditor
# testing from a 'correct' interaction between exchange,
# wallet and merchant.
source "common.sh"
normal_start_and_wait "base"
# run wallet CLI
echo "Running wallet"
taler-wallet-cli testing integrationtest -e "$EXCHANGE_URL" -m "$MERCHANT_URL" -b "$BANK_URL"
exit_success
|