diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2018-04-06 15:24:03 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2018-04-06 15:24:03 +0200 |
commit | be63b9a35f6bc2e3cb00ad9f11a757ee1c4bb79d (patch) | |
tree | 68f9f8ae1795ccfc6acd6c09471afdbc28957c43 | |
parent | 16bff2ff84b8116928ae7fd90364b29abaac0fb4 (diff) |
test: export GCOV_ERROR_FILE=/dev/null to make it fail less/no tests
-rw-r--r-- | test/integration/framework | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/framework b/test/integration/framework index cf0a02de3..a9c797790 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -479,6 +479,9 @@ EOF unset GREP_OPTIONS DEB_BUILD_PROFILES unset http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy + # Make gcov shut up + export GCOV_ERROR_FILE=/dev/null + # If gpgv supports --weak-digest, pass it to make sure we can disable SHA1 if aptkey verify --weak-digest SHA1 --help 2>/dev/null >/dev/null; then echo 'Acquire::gpgv::Options { "--weak-digest"; "sha1"; };' > rootdir/etc/apt/apt.conf.d/no-sha1 |