mklog: Do not print changed functions in testsuite
authorMartin Liska <mliska@suse.cz>
Wed, 4 Sep 2019 08:08:20 +0000 (10:08 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Wed, 4 Sep 2019 08:08:20 +0000 (08:08 +0000)
2019-09-04  Martin Liska  <mliska@suse.cz>

* mklog: Do not print changed functions for
testsuite files.

From-SVN: r275369

contrib/ChangeLog
contrib/mklog

index 5e4ec60ae3a446b1f5220e1db6528e4cce6f7e41..743fe00861f6fea372681f23a8f542eb0b5dfe43 100644 (file)
@@ -1,3 +1,8 @@
+2019-09-04  Martin Liska  <mliska@suse.cz>
+
+       * mklog: Do not print changed functions for
+       testsuite files.
+
 2019-09-04  Martin Liska  <mliska@suse.cz>
 
        * mklog: Parse PR references from newly added
index 852420023570a6517a3e4ada40d9386826838f87..1a0e82d1ddd09194486c391a2dbd5ca10e39f878 100755 (executable)
@@ -407,7 +407,8 @@ otherwise writes to stdout.'
         change_msg = ": Remove.\n"
 
     _, ext = os.path.splitext(d.filename)
-    if not change_msg and ext in ['.c', '.cpp', '.C', '.cc', '.h', '.inc', '.def']:
+    if (not change_msg and ext in ['.c', '.cpp', '.C', '.cc', '.h', '.inc', '.def']
+        and not 'testsuite' in d.filename):
       fns = []
       for hunk in d.hunks:
         for fn in find_changed_funs(hunk):