On Tue, 2018-11-20 at 11:08 +0100, Martin Liška wrote: > Hi. > > It's the script that I used to identify potentially resolvable bugs. > That's done > by parsing of comments and seeking for trunk/branch commits. Sample > output looks > as follows: > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88084 branches: > trunk fail: w > ork: basic_string_view::copy > doesn't use Traits::copy > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88083 branches: > trunk fail: w > ork: ICE in > find_constant_pool_ref_1, at config/s390/s390.c:8231 > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88077 branches: > trunk fail: > 8.2.0 work: > 9.0 [8 Regression] ICE: ....c:378 > since r256989 > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88073 branches: > trunk fail: w > ork: [7/8 Regression] Internal > compiler error compiling WHERE construct with -O or -O2 > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88071 branches: > trunk fail: 8.2.0, > 9.0 work: 7.3.0 [8 > Regression] ICE: verify_gimple failed (error: dead STMT in EH table) > > Plus there are generated bugzilla list so that one can go easily > through. > Would you be interested in putting that into maintainer scripts? > > Martin
A minor nit re the imports: argparse and json are in the stdlib, whereas requests is third-party, so per PEP 8 they should split into two alphabetized groups as: import argparse import json import requests (with that blank line) Dave