From cd3ac8cfbfa43b5d30e45980d8bd0f13386c5cb1 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Thu, 11 Feb 2016 09:56:40 +0100 Subject: [PATCH] Autopkgtest: Trim triggered tests for gccgo-6 Similar to commit 504, gccgo-6 builds all binary packages of gcc-5. --- autopkgtest.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/autopkgtest.py b/autopkgtest.py index a948791..dc6a4ea 100644 --- a/autopkgtest.py +++ b/autopkgtest.py @@ -156,9 +156,10 @@ class AutoPackageTest(object): tests = [] - # hack for vivid's gccgo-5 - if src == 'gccgo-5': - for test in ['juju', 'juju-core', 'juju-mongodb', 'mongodb']: + # hack for vivid's gccgo-5 and xenial's gccgo-6; these build libgcc1 + # too, so test some Go and some libgcc1 consumers + if src in ['gccgo-5', 'gccgo-6']: + for test in ['juju', 'juju-core', 'juju-mongodb', 'mongodb', 'libreoffice']: try: tests.append((test, self.britney.sources['testing'][test][VERSION])) except KeyError: