From dd815d14fabc2bbcf93822c4f9338d2213bddf3c Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Wed, 5 Dec 2018 16:09:57 +0200 Subject: [PATCH] Replace libreoffice with gzip as the libgcc smoke test for gcc. Bug-Ubuntu: https://bugs.launchpad.net/bugs/1793260 --- britney2/policies/autopkgtest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/britney2/policies/autopkgtest.py b/britney2/policies/autopkgtest.py index dbdb1ca..3789555 100644 --- a/britney2/policies/autopkgtest.py +++ b/britney2/policies/autopkgtest.py @@ -296,7 +296,7 @@ class AutopkgtestPolicy(BasePolicy): # 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-mongodb', 'mongodb', 'libreoffice']: + for test in ['juju-mongodb', 'mongodb', 'gzip']: try: tests.append((test, self.britney.sources['testing'][test][VERSION])) except KeyError: @@ -308,14 +308,14 @@ class AutopkgtestPolicy(BasePolicy): # gcc already tests itself during build, and it is being used from # -proposed, so holding it back on a dozen unrelated test failures # serves no purpose. Just check some key packages which actually use - # gcc during the test, and libreoffice as an example for a libgcc user. + # gcc during the test, and gzip as an example for a libgcc user. if src.startswith('gcc-'): if re.match('gcc-\d$', src): # add gcc's own tests, if it has any srcinfo = self.britney.sources['unstable'][src] if 'autopkgtest' in srcinfo.testsuite: tests.append((src, ver)) - for test in ['binutils', 'fglrx-installer', 'libreoffice', 'linux']: + for test in ['binutils', 'fglrx-installer', 'gzip', 'linux']: try: tests.append((test, self.britney.sources['testing'][test][VERSION])) except KeyError: