diff options
author | David Kalnischkies <david@kalnischkies.de> | 2018-09-10 00:00:17 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2018-09-11 12:59:01 +0200 |
commit | a5953d914488c80c28fba6b59d2f0be461cd9f03 (patch) | |
tree | 90979399474d5c478971f263171de27196968e8c /test | |
parent | 8ca3544bcb5506bb5e07e4c750503e64271c1ff1 (diff) |
Unset more environment variables in test framework
It is an uphill battle to "reset" the environment to a clean state
without making it needlessly hard to use 'good' environment variables,
so we just try a little harder here without really trying for
completeness.
Gbp-Dch: Ignore
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/framework | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/integration/framework b/test/integration/framework index cfd621105..b0456096c 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -475,8 +475,11 @@ EOF # prefer our apt binaries over the system apt binaries export PATH="${BUILDDIRECTORY}:${PATH}:/usr/local/sbin:/usr/sbin:/sbin" export LC_ALL=C - unset LANGUAGE APT_CONFIG - unset GREP_OPTIONS DEB_BUILD_PROFILES + unset LANGUAGE COLUMNS NLSPATH + unset APT_CONFIG DPKG_ADMINDIR DPKG_COLORS + unset DEB_CHECK_COMMAND DEB_SIGN_KEYID DEB_BUILD_OPTIONS DEB_BUILD_PROFILES + unset DH_VERBOSE DH_QUIET DH_COMPAT DH_NO_ACT DH_OPTIONS DH_EXTRA_ADDONS + unset GREP_OPTIONS POSIXLY_CORRECT unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy # Make gcov shut up |