diff options
author | Christian Grothoff <christian@grothoff.org> | 2017-01-27 21:44:04 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2017-01-27 21:50:22 +0100 |
commit | 14848b88f7b0d6f0f35ae8d89304062a96fe03cc (patch) | |
tree | c29e9fe46aedad4284a8a386a85841cd5b3e15b4 /src/consensus | |
parent | cf351dea5710ad8cdb63922f6d2360d6c6915f0a (diff) |
unset XDG environment variable during testcases, as they can screw things up badly
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus/Makefile.am b/src/consensus/Makefile.am index c63434f948..c04d4c2079 100644 --- a/src/consensus/Makefile.am +++ b/src/consensus/Makefile.am @@ -71,7 +71,7 @@ check_PROGRAMS = \ test_consensus_api if ENABLE_TEST_RUN -AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH; +AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; TESTS = $(check_PROGRAMS) endif |