update ignores
This commit is contained in:
parent
1b27509242
commit
318f94bf90
1
src/.gitignore
vendored
1
src/.gitignore
vendored
@ -6,4 +6,3 @@
|
|||||||
*.log
|
*.log
|
||||||
*.trs
|
*.trs
|
||||||
*/__pycache__
|
*/__pycache__
|
||||||
test-*
|
|
@ -4846,14 +4846,14 @@ run (void *cls,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
(void) adb->list_exchanges (adb->cls,
|
(void) adb->list_exchanges (adb->cls,
|
||||||
as,
|
as,
|
||||||
&test_master_present,
|
&test_master_present,
|
||||||
&found);
|
&found);
|
||||||
if (GNUNET_NO == found)
|
if (GNUNET_NO == found)
|
||||||
{
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
"Exchange's master public key `%s' not known to auditor DB. Did you forget to run `taler-auditor-exchange`?\n",
|
"Exchange's master public key `%s' not known to auditor DB. Did you forget to run `taler-auditor-exchange`?\n",
|
||||||
TALER_B2S (&master_pub));
|
GNUNET_p2s (&master_pub.eddsa_pub));
|
||||||
global_ret = 1;
|
global_ret = 1;
|
||||||
TALER_AUDITORDB_plugin_unload (adb);
|
TALER_AUDITORDB_plugin_unload (adb);
|
||||||
TALER_EXCHANGEDB_plugin_unload (edb);
|
TALER_EXCHANGEDB_plugin_unload (edb);
|
||||||
|
12
src/auditor/test-auditor.conf
Normal file
12
src/auditor/test-auditor.conf
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
[auditor]
|
||||||
|
DB = postgres
|
||||||
|
|
||||||
|
[auditordb-postgres]
|
||||||
|
CONFIG = postgres:///taler-auditor-test
|
||||||
|
|
||||||
|
[exchangedb-postgres]
|
||||||
|
CONFIG = postgres:///taler-auditor-test
|
||||||
|
|
||||||
|
[taler]
|
||||||
|
CURRENCY = TESTKUDOS
|
||||||
|
|
14
src/auditor/test-auditor.sh
Executable file
14
src/auditor/test-auditor.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -eu
|
||||||
|
DB=taler-auditor-test
|
||||||
|
dropdb $DB || true
|
||||||
|
createdb -T template0 $DB || exit 77
|
||||||
|
psql $DB < ../benchmark/auditor-basedb.sql
|
||||||
|
MASTER_PUB=`cat ../benchmark/auditor-basedb.mpub`
|
||||||
|
|
||||||
|
taler-auditor -c test-auditor.conf -m $MASTER_PUB > test-audit.json
|
||||||
|
|
||||||
|
# TODO: check test-audit.json matches expectations
|
||||||
|
|
||||||
|
dropdb $DB
|
||||||
|
|
1
src/auditordb/.gitignore
vendored
Normal file
1
src/auditordb/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
test-auditordb-postgres
|
6
src/exchangedb/.gitignore
vendored
Normal file
6
src/exchangedb/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
test-exchangedb-auditors
|
||||||
|
test-exchangedb-denomkeys
|
||||||
|
test-exchangedb-fees
|
||||||
|
test-exchangedb-postgres
|
||||||
|
test-exchangedb-signkeys
|
||||||
|
test-perf-taler-exchangedb
|
3
src/wire/.gitignore
vendored
Normal file
3
src/wire/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
test_wire_plugin
|
||||||
|
test_wire_plugin_transactions_test
|
||||||
|
test_sepa_wireformat
|
Loading…
Reference in New Issue
Block a user