[Secure-testing-commits] r48684 - bin

Guido Guenther agx at moszumanska.debian.org
Fri Feb 3 15:35:59 UTC 2017


Author: agx
Date: 2017-02-03 15:35:59 +0000 (Fri, 03 Feb 2017)
New Revision: 48684

Modified:
   bin/lts-cve-triage.py
Log:
lts-cve-triage: Don't silently ignore undetermined issues

Modified: bin/lts-cve-triage.py
===================================================================
--- bin/lts-cve-triage.py	2017-02-03 11:53:26 UTC (rev 48683)
+++ bin/lts-cve-triage.py	2017-02-03 15:35:59 UTC (rev 48684)
@@ -52,6 +52,9 @@
     ('possible_easy_fixes',
      ('Issues from dla-needed.txt that are already fixed in {next_lts}'
      ).format(**RELEASES)),
+    ('undetermined',
+     ('Undetermined issues in {lts}'
+     ).format(**RELEASES)),
 )
 
 lists = collections.defaultdict(lambda: collections.defaultdict(lambda: []))
@@ -115,11 +118,14 @@
                 if status_in_next_lts.status == 'resolved':
                     add_to_list('possible_easy_fixes', pkg, issue)
 
-        if (status_in_lts.status == 'ignored' and
-                status_in_lts.reason == 'no-dsa' and
-                status_in_next_lts.status == 'open'):
-            add_to_list('unexpected_nodsa', pkg, issue)
+        if status_in_lts.status == 'ignored':
+            if (status_in_lts.reason == 'no-dsa' and
+                    status_in_next_lts.status == 'open'):
+                add_to_list('unexpected_nodsa', pkg, issue)
+            elif status_in_lts.reason == 'undetermined':
+                add_to_list('undetermined', pkg, issue)
 
+
 for key, desc in LIST_NAMES:
     if args.filter is not None and key not in args.filter:
         continue




More information about the Secure-testing-commits mailing list