Avoid comparing kernel.img file from the grub2 package
authorDodji Seketeli <dodji@redhat.com>
Mon, 3 Jul 2017 15:39:58 +0000 (17:39 +0200)
committerDodji Seketeli <dodji@redhat.com>
Mon, 3 Jul 2017 15:43:30 +0000 (17:43 +0200)
The command "fedabipkgdiff --self-compare --from fc25 grub2" returns
with an error because no debug info can be found for the file
kernel.img.  That file doesn't have any debug info shipped for it.
And we shouldn't try to compare it anyway.

This patch updates the default suppression file shipped by libabigail
to make it avoid compare kernel.img files.

* default.abignore: Do not compare kernel.img files.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
default.abignore

index b60afabb7697ddf6cbde87d2bfdcc42c5ca27c7c..157c909c9a4fb303c35f795a107256886b09d549 100644 (file)
 ########################################################
 # End of suppression specification for C++ libraries
 # that are not Boost.
-########################################################
\ No newline at end of file
+########################################################
+
+###########################################################
+# Do not compare the kernel.img file from the grub2 package
+###########################################################
+
+[suppress_file]
+  file_name_regexp = kernel\\.img
+
+#####################################################################
+# End of "Do not compare the kernel.img file from the grub2 package"
+#####################################################################
\ No newline at end of file