From 406a961e5781f9a5f53b6fd7bc63793da5225404 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 17 Oct 2011 21:41:47 +0100 Subject: [PATCH] adt-run: make sure apt-listbugs + apt-listchanges do not show up Iff apt-listbugs and/or apt-listchanges are installed and enabled then the frontends may pop up and pause the test runs. By setting the according environment variables we make sure they do not show up. Signed-off-by: Michael Prokop --- runner/adt-run | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runner/adt-run b/runner/adt-run index 1de5934..9110236 100755 --- a/runner/adt-run +++ b/runner/adt-run @@ -55,6 +55,8 @@ timeouts = { 'short':100, 'install':3000, 'test':10000, 'build':100000 } binaries = None # Binaries (.debs we have registered) build_essential = ["build-essential"] paths = [] +os.putenv("APT_LISTBUGS_FRONTEND", "none") # do not consider using apt-listbugs +os.putenv("APT_LISTCHANGES_FRONTEND", "none") # do not consider using apt-listchanges #---------- output handling # -- 2.30.2