diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-04-08 20:16:04 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-04-08 20:16:04 +0200 |
commit | 89c03167768794cd7e45cb02d4fad6e54d55e799 (patch) | |
tree | 7c1a0f5c30f54650ca8aa647895d0d94dcd5748b | |
parent | 117b253d82ca6b4ba8e69a47aed48d61bfd84aba (diff) |
unset XDG_ variables in test driver
-rwxr-xr-x | src/testing/taler-unified-setup.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/testing/taler-unified-setup.sh b/src/testing/taler-unified-setup.sh index 2be6a97f1..d933cc819 100755 --- a/src/testing/taler-unified-setup.sh +++ b/src/testing/taler-unified-setup.sh @@ -29,6 +29,11 @@ set -eu +# These break TALER_HOME control via TALER_TEST_HOME... +unset XDG_DATA_HOME +unset XDG_CONFIG_HOME +unset XDG_CACHE_HOME + EXIT_STATUS=2 # Exit, with status code "skip" (no 'real' failure) |