From fd48bfe54ba9775bb601f4484b0f8f4702d87397 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Fri, 4 Sep 2020 08:27:58 -0700 Subject: [PATCH] Update gcc regexp to handle gcc versions > 9 --- britney2/policies/autopkgtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney2/policies/autopkgtest.py b/britney2/policies/autopkgtest.py index 74785ac..40ab279 100644 --- a/britney2/policies/autopkgtest.py +++ b/britney2/policies/autopkgtest.py @@ -657,7 +657,7 @@ class AutopkgtestPolicy(BasePolicy): # serves no purpose. Just check some key packages which actually use # gcc during the test, and doxygen as an example for a libgcc user. if src.startswith('gcc-'): - if re.match(r'gcc-\d$', src) or src == 'gcc-defaults': + if re.match(r'gcc-\d+$', src) or src == 'gcc-defaults': # add gcc's own tests, if it has any srcinfo = source_suite.sources[src] if 'autopkgtest' in srcinfo.testsuite: