commit 6060c480d725ef920b74393d9d178e491b2d2d42 parent e0e86588565baf0111db24b431e8a4c908017da5 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 17 May 2021 14:44:19 +0200 always put XXXXXX at the end (#6869) Diffstat:
| M | src/testing/initialize_taler_system.sh | | | 6 | +++--- |
| M | src/testing/test_key_rotation.sh | | | 4 | ++-- |
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/testing/initialize_taler_system.sh b/src/testing/initialize_taler_system.sh @@ -30,12 +30,12 @@ function cleanup() # Exchange configuration file will be edited, so we create one # from the template. -CONF=`mktemp test_templateXXXXXX.conf` +CONF=`mktemp test_template.conf-XXXXXX` cp test_template.conf $CONF TMP_DIR=`mktemp -d keys-tmp-XXXXXX` -WALLET_DB=`mktemp test_walletXXXXXX.json` -LAST_RESPONSE=`mktemp test_responseXXXXXX.conf` +WALLET_DB=`mktemp test_wallet.json-XXXXXX` +LAST_RESPONSE=`mktemp test_response.conf-XXXXXX` # Install cleanup handler (except for kill -9) trap cleanup EXIT diff --git a/src/testing/test_key_rotation.sh b/src/testing/test_key_rotation.sh @@ -43,11 +43,11 @@ function cleanup() # Exchange configuration file will be edited, so we create one # from the template. -CONF=`mktemp test_templateXXXXXX.conf` +CONF=`mktemp test_template.conf-XXXXXX` cp test_key_rotation.conf $CONF TMP_DIR=`mktemp -d keys-tmp-XXXXXX` -WALLET_DB=`mktemp test_walletXXXXXX.json` +WALLET_DB=`mktemp test_wallet.json-XXXXXX` # Install cleanup handler (except for kill -9) trap cleanup EXIT