diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-23 10:04:40 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-23 10:04:40 +0100 |
commit | 08a051a7c0d7c51f7d5e19d730109fa859315051 (patch) | |
tree | 0d0d29963793b02d0cf114e41e12953f72adfe50 /src/bank-lib/test_bank_api.c | |
parent | 6a80c0bfa2da80a8f1efd600ee3c94f31d31b21d (diff) |
update test_bank_api to match current bank setup methods
Diffstat (limited to 'src/bank-lib/test_bank_api.c')
-rw-r--r-- | src/bank-lib/test_bank_api.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/bank-lib/test_bank_api.c b/src/bank-lib/test_bank_api.c index 5e38ae2ec..b9b9eae5a 100644 --- a/src/bank-lib/test_bank_api.c +++ b/src/bank-lib/test_bank_api.c @@ -517,25 +517,25 @@ main (int argc, bankd = GNUNET_OS_start_process (GNUNET_NO, GNUNET_OS_INHERIT_STD_ALL, NULL, NULL, NULL, - "taler-bank-httpd", - "taler-bank-httpd", - "-d", "test-bank-home", + "taler-bank-manage", + "taler-bank-manage", + "--bareserver", "8081", NULL); if (NULL == bankd) { fprintf (stderr, - "taler-bank-httpd not found, skipping test\n"); + "taler-bank-manage not found, skipping test\n"); return 77; /* report 'skip' */ } /* give child time to start and bind against the socket */ fprintf (stderr, - "Waiting for taler-bank-httpd to be ready"); + "Waiting for taler-bank-manage to be ready"); do { fprintf (stderr, "."); sleep (1); } - while (0 != system ("wget -q -t 1 -T 1 http://127.0.0.1:8081/keys -o /dev/null -O /dev/null")); + while (0 != system ("wget -q -t 1 -T 1 http://127.0.0.1:8081/ -o /dev/null -O /dev/null")); fprintf (stderr, "\n"); result = GNUNET_SYSERR; GNUNET_SCHEDULER_run (&run, NULL); |