gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated (69b58e65 -> 94431fc6)


From: gnunet
Subject: [taler-wallet-core] branch master updated (69b58e65 -> 94431fc6)
Date: Fri, 15 Jan 2021 19:20:18 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a change to branch master
in repository wallet-core.

    from 69b58e65 set TALER_RUNTIME_DIR correctly
     new e273724b remove debug delay in test
     new 94431fc6 work around path limits

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 packages/taler-wallet-cli/src/integrationtests/harness.ts         | 5 ++++-
 packages/taler-wallet-cli/src/integrationtests/test-revocation.ts | 6 ++----
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/packages/taler-wallet-cli/src/integrationtests/harness.ts 
b/packages/taler-wallet-cli/src/integrationtests/harness.ts
index 101c2cf7..4a856cea 100644
--- a/packages/taler-wallet-cli/src/integrationtests/harness.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/harness.ts
@@ -401,7 +401,10 @@ export interface BankConfig {
 
 function setPaths(config: Configuration, home: string) {
   config.setString("paths", "taler_home", home);
-  config.setString("paths", "taler_runtime_dir", "$TALER_HOME/taler-runtime/");
+  // We need to make sure that the path of taler_runtime_dir isn't too long,
+  // as it contains unix domain sockets (108 character limit).
+  const runDir = fs.mkdtempSync("/tmp/taler-test-");
+  config.setString("paths", "taler_runtime_dir", runDir);
   config.setString(
     "paths",
     "taler_data_home",
diff --git a/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts 
b/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts
index 6e3a8f7a..421b9a30 100644
--- a/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/test-revocation.ts
@@ -48,11 +48,9 @@ async function revokeAllWalletCoins(req: {
   for (const x of usedDenomHashes.values()) {
     await exchange.revokeDenomination(x);
   }
-  console.log("waiting 30 seconds after revocation");
-  await delayMs(30000);
+  await delayMs(1000);
   await exchange.keyup();
-  console.log("waiting 30 seconds after keyup");
-  await delayMs(30000);
+  await delayMs(1000);
   await merchant.stop();
   await merchant.start();
   await merchant.pingUntilAvailable();

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]