libabigail/tests/data/Makefile.am
Dodji Seketeli e19bf5627a Make abi{pkg}diff filter out changes about private types
This is to address the following enhancement requests:

    #19588 - Add a --headers-dir1 and --headers-dir2 option to abidiff
    #19948 - Add --devel-pkg1 and --devel-pkg2 options to abipkgdiff

When the user specifies where to find header files for two binaries
(or packages) being compared, this patch generates a type suppression
specification that filters out change reports about types that are
defined in files that are not in the set of header files specified.

The type suppression specification also suppresses change reports
about changed/added/removed virtual member functions which enclosing
class type matches the type suppression specification.

There is a corner case that the patch handles too, and that is
exhibited by the accompanying test case for abidiff.  There can be a
class defined by DWARF as having no source location and as being a
pure declaration.  This can be a class declaration that has inline
virtual members only, and one or several non-defined virtual methods
too.  When that declaration is included in a source file, GCC
generates debug info that describes that class as being a
declaration-only class with no source declaration.  This patch
considers such a class as being non defined; you know, like a true
opaque type.  So it's considered being not defined in any public
header file.  Changes to this kind of class are thus filtered out.

	* include/abg-comp-filter.h: Update copyright year.
	* src/abg-comp-filter.cc (has_virtual_mem_fn_change): Make this
	static function become exported.
	(has_virtual_mem_fn_change): Declare new function.
	* include/abg-suppression.h
	(suppression_base::{get,set}_is_artificial): Declare new
	accessors.
	(type_suppression::get_source_locations_to_keep): Return an
	unordered set of strings, not a vector.  Add a non-const overload.
	(type_suppression::set_source_locations_to_keep): Set an unordered
	set of strings, not a vector.
	* src/abg-suppression.cc (suppression_base::priv::is_artificial_):
	New data member.
	(suppression_base::priv::priv): Initialize the new data member.
	(suppression_base::{get,set}_is_artificial): Define new accessors.
	(type_suppression::priv::source_locations_to_keep_): Change the
	vector of strings representing source file names into unordered
	set of string.
	(type_suppression::get_source_locations_to_keep): Return an
	unordered set of strings, not a vector.  Define a non-const
	overload.
	(type_suppression::set_source_locations_to_keep): Set an unordered
	set of strings, not a vector.
	(type_suppression::suppresses_diff): Make this suppress virtual
	member function diffs if the enclosing type of the changed virtual
	member is suppressed by the current type_suppression.
	(read_type_suppression): Adjust to use the fact that the source
	locations are not stored in an unordered set, not in a vector
	anymore.  Otherwise, using a vector here make things too slow.
	(type_suppression::suppresses_type): Likewise.  Also, If the type
	we are looking at has no location because it's a true opaque type
	and if the current suppression is an artificial suppression that
	is meant to suppress change reports about non-public types, then
	suppress the type.
	* include/abg-tools-utils.h (gen_suppr_spec_from_headers): Declare
	new public function.
	* src/abg-tools-utils.cc (PRIVATE_TYPES_SUPPR_SPEC_NAME): Define a
	new constant variable.
	(handle_fts_entry): Define new static function.
	(gen_suppr_spec_from_headers): Define new public function.
	* src/abg-comparison.cc
	(corpus_diff::priv::apply_suppressions_to_added_removed_fns_vars):
	If a type suppression suppresses a given class C, make it change
	added/removed virtual functions whose enclosing type is C.
	* tools/abidiff.cc (options::{headers_dir1, headers_dir2}): New
	data members.
	(display_usage): Add help strings for --headers-dir1 and
	--headers-dir2.
	(parse_command_line): Parse the new --headers-dir1 and
	--headers-dir2 options.
	(set_diff_context_from_opts): Generate suppression specifications
	to filter out changes on private types, if --headers-dir1 or
	--headers-dir2 is given.
	* tools/abipkgdiff.cc (options::{devel_package1, devel_package2}):
	New data members.
	(typedef package_sptr): New typedef.
	(enum package::kind): New enum.
	(package::kind_): New data member.  This replaces ...
	(package::is_debug_info_): ... this data member.
	(package::{devel_package_, private_types_suppressions_}): New data
	members.
	(package::package): Adjust.
	(package::get_kind): Define new member function.  This replaces
	...
	(package::is_debug_info): ... this member function overload.
	(package::set_kind): Define new member functin.  It replaces ...
	(package::is_debug_info): ... this member function overload.
	(package::{devel_package, private_types_suppressions}): Define new
	accessors.
	(package::erase_extraction_directies): Erase the sub-directory
	where development packages are extracted to.
	(compare_args::private_types_suppr{1,2}): New data members.
	(compare_args::compare_args): Adjust.
	(display_usage): Add help strings for --devel-pkg1/--devel-pkg2.
	(compare): Make the overload that compares elf files take private
	types suppressions.  Add the private types suppressions to the
	diff context.
	(pthread_routine_compare): Adjust the call to compare.
	(maybe_create_private_types_suppressions): Define new static
	function.
	(pthread_routine_extract_pkg_and_map_its_content): If a devel
	package was specified for the main package then extract it in
	parallel with the other package extraction.  When the extraction
	is done, create private types suppressions by visiting the
	directories that contain the header files.
	(compare): In the overload that compares packages by scheduling
	comparison of individual elf files that are in the packages, pass
	in the private type suppressions too.
	(parse_command_line): Parse the new --devel-pkg{1,2} command line
	options.
	(main): Associate the devel package to the main package, if the
	--devel-pkg{1,2}.
	* doc/manuals/abidiff.rst: Add documentation about the new
	--headers-dir1 and --headers-dir2 options.
	* doc/manuals/abipkgdiff.rst: Likewise, add documentation about
	the new --devel-pkg1 and --devel-pkg2 libraries.
	* tests/data/test-diff-pkg/tbb-4.1-9.20130314.fc22.x86_64--tbb-4.3-3.20141204.fc23.x86_64-report-1.txt:
	New test reference output.
	* tests/data/test-diff-pkg/tbb-devel-4.1-9.20130314.fc22.x86_64.rpm:
	New test input package.
	* tests/data/test-diff-pkg/tbb-devel-4.3-3.20141204.fc23.x86_64.rpm: Likewise.
	* tests/test-diff-pkg.cc b/tests/test-diff-pkg.cc
	(InOutSpec::{first,second}_in_devel_package_path): New data
	members.
	(in_out_specs): Adjust.  Also, add a new entry describing the new
	test inputs above.
	(test_task::perform): When the new test entry contains devel
	packages, pass them to abipkgdiff using the --devel1 and --devel2
	options.
	* tests/data/test-diff-suppr/test30-include-dir-v0/test30-pub-lib-v0.h:
	A new test input source code.
	* tests/data/test-diff-suppr/test30-include-dir-v1/test30-pub-lib-v1.h: Likewise.
	* tests/data/test-diff-suppr/test30-priv-lib-v0.cc: Likewise.
	* tests/data/test-diff-suppr/test30-priv-lib-v0.h: Likewise.
	* tests/data/test-diff-suppr/test30-priv-lib-v1.cc: Likewise.
	* tests/data/test-diff-suppr/test30-priv-lib-v1.h: Likewise.
	* tests/data/test-diff-suppr/test30-pub-lib-v0.cc: Likewise.
	* tests/data/test-diff-suppr/test30-pub-lib-v0.so: Add new test
	binary input.
	* tests/data/test-diff-suppr/test30-pub-lib-v1.cc: Add new test
	input source code.
	* tests/data/test-diff-suppr/test30-pub-lib-v1.so: Add new test
	binary input.
	* tests/data/test-diff-suppr/test30-report-0.txt: Add new test
	reference output.
	* tests/data/test-diff-suppr/test30-report-1.txt: Add new test
	reference output.
	* tests/test-diff-suppr.cc (InOutSpec::headers_dir{1,2}): New data
	members.
	(InOutSpec::abidiff_options): Renamed the bidiff_options data
	member into this.
	(in_out_specs): Adjust.  Also, added the new test input above to
	this.
	(main): Adjust to invoke abidiff with the new --hd1 and --hd2
	options if the input specs for the tests has the new
	InOutSpec::headers_dir{1,2} data member set.  Renamed bidiff into
	abidiff.
	* tests/data/Makefile.am: Add the new test inputs to the source
	distribution.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
2016-05-24 10:32:08 +02:00

1159 lines
50 KiB
Makefile

EXTRA_DIST = \
test-read-write/test0.xml \
test-read-write/test1.xml \
test-read-write/test2.xml \
test-read-write/test3.xml \
test-read-write/test4.xml \
test-read-write/test5.xml \
test-read-write/test6.xml \
test-read-write/test7.xml \
test-read-write/test8.xml \
test-read-write/test9.xml \
test-read-write/test10.xml \
test-read-write/test11.xml \
test-read-write/test12.xml \
test-read-write/test13.xml \
test-read-write/test14.xml \
test-read-write/test15.xml \
test-read-write/test16.xml \
test-read-write/test17.xml \
test-read-write/test18.xml \
test-read-write/test19.xml \
test-read-write/test20.xml \
test-read-write/test21.xml \
test-read-write/test22.xml \
test-read-write/test23.xml \
test-read-write/test24.xml \
test-read-write/test25.xml \
test-read-write/test26.xml \
test-read-write/test27.xml \
\
test-write-read-archive/test0.xml \
test-write-read-archive/test1.xml \
test-write-read-archive/test2.xml \
test-write-read-archive/test3.xml \
test-write-read-archive/test4.xml \
\
test-core-diff/report0.txt \
test-core-diff/report1.txt \
test-core-diff/report2.txt \
test-core-diff/report3.txt \
test-core-diff/report4.txt \
test-core-diff/report5.txt \
test-core-diff/report6.txt \
test-core-diff/report7.txt \
test-core-diff/report8.txt \
test-core-diff/report9.txt \
test-core-diff/report10.txt \
test-core-diff/report11.txt \
test-core-diff/report12.txt \
test-core-diff/report13.txt \
\
test-abidiff/test-enum0-v0.cc.bi \
test-abidiff/test-enum0-v1.cc.bi \
test-abidiff/test-enum0-report.txt \
test-abidiff/test-enum1-v0.cc.bi \
test-abidiff/test-enum1-v1.cc.bi \
test-abidiff/test-enum1-report.txt \
test-abidiff/test-qual-type0-v0.cc.bi \
test-abidiff/test-qual-type0-v1.cc.bi \
test-abidiff/test-qual-type0-report.txt \
test-abidiff/test-struct0-v0.cc.bi \
test-abidiff/test-struct0-v1.cc.bi \
test-abidiff/test-struct0-report.txt \
test-abidiff/test-struct1-v0.cc.bi \
test-abidiff/test-struct1-v1.cc.bi \
test-abidiff/test-struct1-report.txt \
test-abidiff/test-var0-v0.cc.bi \
test-abidiff/test-var0-v1.cc.bi \
test-abidiff/test-var0-report.txt \
test-abidiff/test-PR18166-libtirpc.so \
test-abidiff/test-PR18166-libtirpc.so.abi \
test-abidiff/test-PR18166-libtirpc.so.report.txt \
test-abidiff/test-PR18791-report0.txt \
test-abidiff/test-PR18791-v0.so.abi \
test-abidiff/test-PR18791-v1.so.abi \
\
test-abidiff-exit/test1-voffset-change-report0.txt \
test-abidiff-exit/test1-voffset-change-report1.txt \
test-abidiff-exit/test1-voffset-change.abignore \
test-abidiff-exit/test1-voffset-change-v0.cc \
test-abidiff-exit/test1-voffset-change-v0.o \
test-abidiff-exit/test1-voffset-change-v1.cc \
test-abidiff-exit/test1-voffset-change-v1.o \
test-abidiff-exit/test2-filtered-removed-fns-report0.txt \
test-abidiff-exit/test2-filtered-removed-fns-report1.txt \
test-abidiff-exit/test2-filtered-removed-fns-v0.c \
test-abidiff-exit/test2-filtered-removed-fns-v1.c \
test-abidiff-exit/test2-filtered-removed-fns-v0.o \
test-abidiff-exit/test2-filtered-removed-fns-v1.o \
test-abidiff-exit/test2-filtered-removed-fns.abignore \
\
test-diff-dwarf/test0-v0.cc \
test-diff-dwarf/test0-v0.o \
test-diff-dwarf/test0-v1.cc \
test-diff-dwarf/test0-v1.o \
test-diff-dwarf/test0-report.txt \
test-diff-dwarf/test1-v0.cc \
test-diff-dwarf/test1-v0.o \
test-diff-dwarf/test1-v1.cc \
test-diff-dwarf/test1-v1.o \
test-diff-dwarf/test1-report.txt \
test-diff-dwarf/test2-v0.cc \
test-diff-dwarf/test2-v0.o \
test-diff-dwarf/test2-v1.cc \
test-diff-dwarf/test2-v1.o \
test-diff-dwarf/test2-report.txt \
test-diff-dwarf/test3-v0.cc \
test-diff-dwarf/test3-v0.o \
test-diff-dwarf/test3-v1.cc \
test-diff-dwarf/test3-v1.o \
test-diff-dwarf/test3-report.txt \
test-diff-dwarf/test4-v0.cc \
test-diff-dwarf/test4-v0.o \
test-diff-dwarf/test4-v1.cc \
test-diff-dwarf/test4-v1.o \
test-diff-dwarf/test4-report.txt \
test-diff-dwarf/test5-v0.cc \
test-diff-dwarf/test5-v0.o \
test-diff-dwarf/test5-v1.cc \
test-diff-dwarf/test5-v1.o \
test-diff-dwarf/test5-report.txt \
test-diff-dwarf/test6-v0.cc \
test-diff-dwarf/test6-v0.o \
test-diff-dwarf/test6-v1.cc \
test-diff-dwarf/test6-v1.o \
test-diff-dwarf/test6-report.txt \
test-diff-dwarf/test7-v0.cc \
test-diff-dwarf/test7-v0.o \
test-diff-dwarf/test7-v1.cc \
test-diff-dwarf/test7-v1.o \
test-diff-dwarf/test7-report.txt \
test-diff-dwarf/test8-v0.cc \
test-diff-dwarf/test8-v0.o \
test-diff-dwarf/test8-v1.cc \
test-diff-dwarf/test8-v1.o \
test-diff-dwarf/test8-report.txt \
test-diff-dwarf/test9-v0.cc \
test-diff-dwarf/libtest9-v0.so \
test-diff-dwarf/test9-v1.cc \
test-diff-dwarf/libtest9-v1.so \
test-diff-dwarf/test9-report.txt \
test-diff-dwarf/test10-v0.cc \
test-diff-dwarf/test10-v0.o \
test-diff-dwarf/test10-v1.cc \
test-diff-dwarf/test10-v1.o \
test-diff-dwarf/test10-report.txt \
test-diff-dwarf/test11-v0.cc \
test-diff-dwarf/test11-v0.o \
test-diff-dwarf/test11-v1.cc \
test-diff-dwarf/test11-v1.o \
test-diff-dwarf/test11-report.txt \
test-diff-dwarf/test12-v0.c \
test-diff-dwarf/libtest12-v0.so \
test-diff-dwarf/test12-v1.c \
test-diff-dwarf/libtest12-v1.so \
test-diff-dwarf/test12-version-script \
test-diff-dwarf/test12-report.txt \
test-diff-dwarf/test13-v0.cc \
test-diff-dwarf/test13-v0.o \
test-diff-dwarf/test13-v1.cc \
test-diff-dwarf/test13-v1.o \
test-diff-dwarf/test13-report.txt \
test-diff-dwarf/test14-inline-v0.cc \
test-diff-dwarf/test14-inline-v0.o \
test-diff-dwarf/test14-inline-v1.cc \
test-diff-dwarf/test14-inline-v1.o \
test-diff-dwarf/test14-inline-report.txt \
test-diff-dwarf/test15-enum-v0.cc \
test-diff-dwarf/test15-enum-v0.o \
test-diff-dwarf/test15-enum-v1.cc \
test-diff-dwarf/test15-enum-v1.o \
test-diff-dwarf/test15-enum-report.txt \
test-diff-dwarf/test16-syms-only-v0.o \
test-diff-dwarf/test16-syms-only-v1.o \
test-diff-dwarf/test16-syms-only-v0.cc \
test-diff-dwarf/test16-syms-only-v1.cc \
test-diff-dwarf/test16-syms-only-report.txt \
test-diff-dwarf/test17-non-refed-syms-v0.o \
test-diff-dwarf/test17-non-refed-syms-v1.o \
test-diff-dwarf/test17-non-refed-syms-report-0.txt \
test-diff-dwarf/test17-non-refed-syms-v0.cc \
test-diff-dwarf/test17-non-refed-syms-v1.cc \
test-diff-dwarf/libtest18-alias-sym-v0.so \
test-diff-dwarf/libtest18-alias-sym-v1.so \
test-diff-dwarf/test18-alias-sym-report-0.txt \
test-diff-dwarf/test18-alias-sym-v0.cc \
test-diff-dwarf/test18-alias-sym-v1.cc \
test-diff-dwarf/test18-alias-sym-version-script \
test-diff-dwarf/libtest19-soname-v0.so \
test-diff-dwarf/libtest19-soname-v1.so \
test-diff-dwarf/test19-soname-report-0.txt \
test-diff-dwarf/test19-soname-v0.cc \
test-diff-dwarf/test19-soname-v1.cc \
test-diff-dwarf/libtest20-add-fn-parm-v0.so \
test-diff-dwarf/libtest20-add-fn-parm-v1.so \
test-diff-dwarf/test20-add-fn-parm-report-0.txt \
test-diff-dwarf/test20-add-fn-parm-v0.c \
test-diff-dwarf/test20-add-fn-parm-v1.c \
test-diff-dwarf/libtest21-redundant-fn-v0.so \
test-diff-dwarf/libtest21-redundant-fn-v1.so \
test-diff-dwarf/test21-redundant-fn-report-0.txt \
test-diff-dwarf/test21-redundant-fn-v0.cc \
test-diff-dwarf/test21-redundant-fn-v1.cc \
test-diff-dwarf/libtest22-changed-parm-c-v0.so \
test-diff-dwarf/libtest22-changed-parm-c-v1.so \
test-diff-dwarf/test22-changed-parm-c-report-0.txt \
test-diff-dwarf/test22-changed-parm-c-v0.c \
test-diff-dwarf/test22-changed-parm-c-v1.c \
test-diff-dwarf/libtest-23-diff-arch-v0-32.so \
test-diff-dwarf/libtest-23-diff-arch-v0-64.so \
test-diff-dwarf/test-23-diff-arch-report-0.txt \
test-diff-dwarf/test-23-diff-arch-v0.cc \
test-diff-dwarf/libtest24-added-fn-parms-v0.so \
test-diff-dwarf/libtest24-added-fn-parms-v1.so \
test-diff-dwarf/test24-added-fn-parms-report-0.txt \
test-diff-dwarf/test24-added-fn-parms-v0.c \
test-diff-dwarf/test24-added-fn-parms-v1.c \
test-diff-dwarf/libtest25-removed-fn-parms-v0.so \
test-diff-dwarf/libtest25-removed-fn-parms-v1.so \
test-diff-dwarf/test25-removed-fn-parms-report-0.txt \
test-diff-dwarf/test25-removed-fn-parms-v0.c \
test-diff-dwarf/test25-removed-fn-parms-v1.c \
test-diff-dwarf/libtest26-added-parms-before-variadic-v0.so \
test-diff-dwarf/libtest26-added-parms-before-variadic-v1.so \
test-diff-dwarf/test26-added-parms-before-variadic-report.txt \
test-diff-dwarf/test26-added-parms-before-variadic-v0.c \
test-diff-dwarf/test26-added-parms-before-variadic-v1.c \
test-diff-dwarf/test27-local-base-diff-v0.o \
test-diff-dwarf/test27-local-base-diff-v1.o \
test-diff-dwarf/test27-local-base-diff-v0.cc \
test-diff-dwarf/test27-local-base-diff-v1.cc \
test-diff-dwarf/test27-local-base-diff-report.txt \
test-diff-dwarf/test28-vtable-changes-report-0.txt \
test-diff-dwarf/test28-vtable-changes-v0.o \
test-diff-dwarf/test28-vtable-changes-v1.o \
test-diff-dwarf/test28-vtable-changes-v0.cc \
test-diff-dwarf/test28-vtable-changes-v1.cc \
test-diff-dwarf/test29-vtable-changes-report-0.txt \
test-diff-dwarf/test29-vtable-changes-v0.cc \
test-diff-dwarf/test29-vtable-changes-v0.o \
test-diff-dwarf/test29-vtable-changes-v1.cc \
test-diff-dwarf/test29-vtable-changes-v1.o \
test-diff-dwarf/test30-vtable-changes-report-0.txt \
test-diff-dwarf/test30-vtable-changes-v0.cc \
test-diff-dwarf/test30-vtable-changes-v0.o \
test-diff-dwarf/test30-vtable-changes-v1.cc \
test-diff-dwarf/test30-vtable-changes-v1.o \
test-diff-dwarf/test31-vtable-changes-report-0.txt \
test-diff-dwarf/test31-vtable-changes-v0.cc \
test-diff-dwarf/test31-vtable-changes-v0.o \
test-diff-dwarf/test31-vtable-changes-v1.cc \
test-diff-dwarf/test31-vtable-changes-v1.o \
test-diff-dwarf/test32-fnptr-changes-report-0.txt \
test-diff-dwarf/test32-fnptr-changes-v0.cc \
test-diff-dwarf/test32-fnptr-changes-v0.o \
test-diff-dwarf/test32-fnptr-changes-v1.cc \
test-diff-dwarf/test32-fnptr-changes-v1.o \
test-diff-dwarf/test33-fnref-changes-report-0.txt \
test-diff-dwarf/test33-fnref-changes-v0.cc \
test-diff-dwarf/test33-fnref-changes-v0.o \
test-diff-dwarf/test33-fnref-changes-v1.cc \
test-diff-dwarf/test33-fnref-changes-v1.o \
test-diff-dwarf/test34-pr19173-libfoo.so \
test-diff-dwarf/test34-pr19173-libfoo2.so \
test-diff-dwarf/test34-pr19173-libfoo-report-0.txt \
test-diff-dwarf/test35-pr19173-libfoo-long-gcc.so \
test-diff-dwarf/test35-pr19173-libfoo-long-gcc2.so \
test-diff-dwarf/test35-pr19173-libfoo-long-gcc-report-0.txt \
test-diff-dwarf/test35-pr19173-libfoo-long-clang.so \
test-diff-dwarf/test35-pr19173-libfoo-long-clang2.so \
test-diff-dwarf/test35-pr19173-libfoo-long-clang-report-0.txt \
test-diff-dwarf/libtest36-ppc64-aliases-v0.so \
test-diff-dwarf/libtest36-ppc64-aliases-v1.so \
test-diff-dwarf/test36-ppc64-aliases-v0.cc \
test-diff-dwarf/test36-ppc64-aliases-v1.cc \
test-diff-dwarf/test36-ppc64-aliases-report-0.txt \
\
test-read-dwarf/test0 \
test-read-dwarf/test0.abi \
test-read-dwarf/test0.cc \
test-read-dwarf/test1 \
test-read-dwarf/test1.abi \
test-read-dwarf/test1.cc \
test-read-dwarf/test2.h \
test-read-dwarf/test2-0.cc \
test-read-dwarf/test2-1.cc \
test-read-dwarf/test2.so \
test-read-dwarf/test2.so.abi \
test-read-dwarf/test3.c \
test-read-dwarf/test3.so \
test-read-dwarf/test3.so.abi \
test-read-dwarf/test4.c \
test-read-dwarf/test4.so \
test-read-dwarf/test4.so.abi \
test-read-dwarf/test5.cc \
test-read-dwarf/test5.o \
test-read-dwarf/test5.o.abi \
test-read-dwarf/test6.cc \
test-read-dwarf/test6.so \
test-read-dwarf/test6.so.abi \
test-read-dwarf/test7.cc \
test-read-dwarf/test7.so \
test-read-dwarf/test7.so.abi \
test-read-dwarf/test8-qualified-this-pointer.cc \
test-read-dwarf/test8-qualified-this-pointer.so \
test-read-dwarf/test8-qualified-this-pointer.so.abi \
test-read-dwarf/test9-pr18818-clang.so \
test-read-dwarf/test10-pr18818-gcc.so \
test-read-dwarf/test9-pr18818-clang.so.abi \
test-read-dwarf/test10-pr18818-gcc.so.abi \
test-read-dwarf/test11-pr18828.so \
test-read-dwarf/test11-pr18828.so.abi \
test-read-dwarf/test12-pr18844.so \
test-read-dwarf/test12-pr18844.so.abi \
test-read-dwarf/test13-pr18894.so \
test-read-dwarf/test13-pr18894.so.abi \
test-read-dwarf/test14-pr18893.so \
test-read-dwarf/test14-pr18893.so.abi \
test-read-dwarf/test15-pr18892.so \
test-read-dwarf/test15-pr18892.so.abi \
test-read-dwarf/test16-pr18904.so \
test-read-dwarf/test16-pr18904.so.abi \
test-read-dwarf/test17-pr19027.so \
test-read-dwarf/test17-pr19027.so.abi \
test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so \
test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi \
test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so \
test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi \
test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so \
test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so.abi \
test-read-dwarf/test21-pr19092.so \
test-read-dwarf/test21-pr19092.so.abi \
test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so \
test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi \
\
test-types-stability/pr19434-elf0 \
test-types-stability/pr19139-DomainNeighborMapInst.o \
test-types-stability/pr19202-libmpi_gpfs.so.5.0 \
test-types-stability/pr19026-libvtkIOSQL-6.1.so.1 \
test-types-stability/pr19138-elf0 \
test-types-stability/pr19433-custom0 \
test-types-stability/pr19141-get5d.o \
test-types-stability/pr19142-topo.o \
test-types-stability/pr19204-libtcmalloc.so.4.2.6-xlc \
\
test-diff-filter/test0-v0.cc \
test-diff-filter/test0-v1.cc \
test-diff-filter/test0-v0.o \
test-diff-filter/test0-v1.o \
test-diff-filter/test0-report.txt \
test-diff-filter/test01-report.txt \
test-diff-filter/test1-v0.cc \
test-diff-filter/test1-v1.cc \
test-diff-filter/test1-v0.o \
test-diff-filter/test1-v1.o \
test-diff-filter/test1-report.txt \
test-diff-filter/test2-v0.cc \
test-diff-filter/test2-v1.cc \
test-diff-filter/test2-v0.o \
test-diff-filter/test2-v1.o \
test-diff-filter/test2-report.txt \
test-diff-filter/test3-v0.cc \
test-diff-filter/test3-v1.cc \
test-diff-filter/test3-v0.o \
test-diff-filter/test3-v1.o \
test-diff-filter/test3-report.txt \
test-diff-filter/test4-v0.cc \
test-diff-filter/test4-v1.cc \
test-diff-filter/test4-v0.o \
test-diff-filter/test4-v1.o \
test-diff-filter/test4-report.txt \
test-diff-filter/test5-v0.cc \
test-diff-filter/test5-v1.cc \
test-diff-filter/test5-v0.o \
test-diff-filter/test5-v1.o \
test-diff-filter/test5-report.txt \
test-diff-filter/test6-v0.cc \
test-diff-filter/test6-v1.cc \
test-diff-filter/test6-v0.o \
test-diff-filter/test6-v1.o \
test-diff-filter/test6-report.txt \
test-diff-filter/test7-v0.cc \
test-diff-filter/test7-v1.cc \
test-diff-filter/test7-v0.o \
test-diff-filter/test7-v1.o \
test-diff-filter/test7-report.txt \
test-diff-filter/test8-v0.cc \
test-diff-filter/test8-v1.cc \
test-diff-filter/test8-v0.o \
test-diff-filter/test8-v1.o \
test-diff-filter/test8-report.txt \
test-diff-filter/test9-v0.cc \
test-diff-filter/test9-v1.cc \
test-diff-filter/test9-v0.o \
test-diff-filter/test9-v1.o \
test-diff-filter/test9-report.txt \
test-diff-filter/test10-v0.cc \
test-diff-filter/test10-v1.cc \
test-diff-filter/test10-v0.o \
test-diff-filter/test10-v1.o \
test-diff-filter/test10-report.txt \
test-diff-filter/test11-v0.cc \
test-diff-filter/test11-v1.cc \
test-diff-filter/test11-v0.o \
test-diff-filter/test11-v1.o \
test-diff-filter/test11-report.txt \
test-diff-filter/test12-v0.cc \
test-diff-filter/test12-v1.cc \
test-diff-filter/test12-v0.o \
test-diff-filter/test12-v1.o \
test-diff-filter/test12-report.txt \
test-diff-filter/test13-v0.cc \
test-diff-filter/test13-v1.cc \
test-diff-filter/test13-v0.o \
test-diff-filter/test13-v1.o \
test-diff-filter/test13-report.txt \
test-diff-filter/test14-v0.cc \
test-diff-filter/test14-v1.cc \
test-diff-filter/test14-v0.o \
test-diff-filter/test14-v1.o \
test-diff-filter/test14-0-report.txt \
test-diff-filter/test14-1-report.txt \
test-diff-filter/test15-v0.cc \
test-diff-filter/test15-v1.cc \
test-diff-filter/test15-v0.o \
test-diff-filter/test15-v1.o \
test-diff-filter/test15-0-report.txt \
test-diff-filter/test15-1-report.txt \
test-diff-filter/test16-v0.cc \
test-diff-filter/test16-v1.cc \
test-diff-filter/test16-v0.o \
test-diff-filter/test16-v1.o \
test-diff-filter/test16-report.txt \
test-diff-filter/test16-report-2.txt \
test-diff-filter/test17-v0.cc \
test-diff-filter/test17-v1.cc \
test-diff-filter/test17-v0.o \
test-diff-filter/test17-v1.o \
test-diff-filter/test17-0-report.txt \
test-diff-filter/test17-1-report.txt \
test-diff-filter/test18-v0.cc \
test-diff-filter/test18-v1.cc \
test-diff-filter/test18-v0.o \
test-diff-filter/test18-v1.o \
test-diff-filter/test18-report.txt \
test-diff-filter/test19-enum-v0.cc \
test-diff-filter/test19-enum-v1.cc \
test-diff-filter/test19-enum-v0.o \
test-diff-filter/test19-enum-v1.o \
test-diff-filter/test19-enum-report-0.txt \
test-diff-filter/test19-enum-report-1.txt \
test-diff-filter/test20-inline-v0.cc \
test-diff-filter/test20-inline-v1.cc \
test-diff-filter/test20-inline-v0.o \
test-diff-filter/test20-inline-v1.o \
test-diff-filter/test20-inline-report-0.txt \
test-diff-filter/test20-inline-report-1.txt \
test-diff-filter/libtest21-compatible-vars-v0.so \
test-diff-filter/libtest21-compatible-vars-v1.so \
test-diff-filter/test21-compatible-vars-report-0.txt \
test-diff-filter/test21-compatible-vars-report-1.txt \
test-diff-filter/test21-compatible-vars-v0.cc \
test-diff-filter/test21-compatible-vars-v1.cc \
test-diff-filter/libtest22-compatible-fns-v0.so \
test-diff-filter/libtest22-compatible-fns-v1.so \
test-diff-filter/test22-compatible-fns-report-0.txt \
test-diff-filter/test22-compatible-fns-report-1.txt \
test-diff-filter/test22-compatible-fns-v0.c \
test-diff-filter/test22-compatible-fns-v1.c \
test-diff-filter/libtest23-redundant-fn-parm-change-v0.so \
test-diff-filter/libtest23-redundant-fn-parm-change-v1.so \
test-diff-filter/test23-redundant-fn-parm-change-report-0.txt \
test-diff-filter/test23-redundant-fn-parm-change-v0.c \
test-diff-filter/test23-redundant-fn-parm-change-v1.c \
test-diff-filter/libtest24-compatible-vars-v0.so \
test-diff-filter/libtest24-compatible-vars-v1.so \
test-diff-filter/test24-compatible-vars-report-0.txt \
test-diff-filter/test24-compatible-vars-report-1.txt \
test-diff-filter/test24-compatible-vars-v0.c \
test-diff-filter/test24-compatible-vars-v1.c \
test-diff-filter/libtest25-cyclic-type-v0.so \
test-diff-filter/libtest25-cyclic-type-v1.so \
test-diff-filter/test25-cyclic-type-report-0.txt \
test-diff-filter/test25-cyclic-type-report-1.txt \
test-diff-filter/test25-cyclic-type-v0.cc \
test-diff-filter/test25-cyclic-type-v1.cc \
test-diff-filter/libtest26-qualified-redundant-node-v0.so \
test-diff-filter/libtest26-qualified-redundant-node-v1.so \
test-diff-filter/test26-qualified-redundant-node-report-0.txt \
test-diff-filter/test26-qualified-redundant-node-report-1.txt \
test-diff-filter/test26-qualified-redundant-node-v0.cc \
test-diff-filter/test26-qualified-redundant-node-v1.cc \
test-diff-filter/libtest27-redundant-and-filtered-children-nodes-v0.so \
test-diff-filter/libtest27-redundant-and-filtered-children-nodes-v1.so \
test-diff-filter/test27-redundant-and-filtered-children-nodes-report-0.txt \
test-diff-filter/test27-redundant-and-filtered-children-nodes-report-1.txt \
test-diff-filter/test27-redundant-and-filtered-children-nodes-report-2.txt \
test-diff-filter/test27-redundant-and-filtered-children-nodes-v0.cc \
test-diff-filter/test27-redundant-and-filtered-children-nodes-v1.cc \
test-diff-filter/libtest28-redundant-and-filtered-children-nodes-v0.so \
test-diff-filter/libtest28-redundant-and-filtered-children-nodes-v1.so \
test-diff-filter/test28-redundant-and-filtered-children-nodes-report-0.txt \
test-diff-filter/test28-redundant-and-filtered-children-nodes-report-1.txt \
test-diff-filter/test28-redundant-and-filtered-children-nodes-v0.cc \
test-diff-filter/test28-redundant-and-filtered-children-nodes-v1.cc \
test-diff-filter/test29-finer-redundancy-marking-report-0.txt \
test-diff-filter/test29-finer-redundancy-marking-v0.o \
test-diff-filter/test29-finer-redundancy-marking-v1.cc \
test-diff-filter/test29-finer-redundancy-marking-v0.cc \
test-diff-filter/test29-finer-redundancy-marking-v1.o \
test-diff-filter/test30-pr18904-rvalueref-liba.so \
test-diff-filter/test30-pr18904-rvalueref-libb.so \
test-diff-filter/test30-pr18904-rvalueref-report0.txt \
test-diff-filter/test30-pr18904-rvalueref-report1.txt \
test-diff-filter/test31-pr18535-libstdc++-4.8.3.so \
test-diff-filter/test31-pr18535-libstdc++-4.9.2.so \
test-diff-filter/test31-pr18535-libstdc++-report-0.txt \
test-diff-filter/test31-pr18535-libstdc++-report-1.txt \
test-diff-filter/libtest32-struct-change-v0.so \
test-diff-filter/libtest32-struct-change-v1.so \
test-diff-filter/test32-ppc64le-struct-change-report0.txt \
test-diff-filter/test32-ppc64le-struct-change-v0.c \
test-diff-filter/test32-ppc64le-struct-change-v1.c \
\
test-diff-suppr/test0-type-suppr-v0.cc \
test-diff-suppr/test0-type-suppr-v1.cc \
test-diff-suppr/test0-type-suppr-v0.o \
test-diff-suppr/test0-type-suppr-v1.o \
test-diff-suppr/test0-type-suppr-0.suppr \
test-diff-suppr/test0-type-suppr-1.suppr \
test-diff-suppr/test0-type-suppr-2.suppr \
test-diff-suppr/test0-type-suppr-3.suppr \
test-diff-suppr/test0-type-suppr-4.suppr \
test-diff-suppr/test0-type-suppr-5.suppr \
test-diff-suppr/test0-type-suppr-6.suppr \
test-diff-suppr/test0-type-suppr-report-0.txt \
test-diff-suppr/test0-type-suppr-report-1.txt \
test-diff-suppr/test0-type-suppr-report-2.txt \
test-diff-suppr/test0-type-suppr-report-3.txt \
test-diff-suppr/test0-type-suppr-report-4.txt \
test-diff-suppr/test0-type-suppr-report-5.txt \
test-diff-suppr/test0-type-suppr-report-6.txt \
test-diff-suppr/test0-type-suppr-report-7.txt \
test-diff-suppr/test1-typedef-suppr.h \
test-diff-suppr/test1-typedef-suppr-v0.c \
test-diff-suppr/test1-typedef-suppr-v1.c \
test-diff-suppr/test1-typedef-suppr-v0.o \
test-diff-suppr/test1-typedef-suppr-v1.o \
test-diff-suppr/test1-typedef-suppr-0.suppr \
test-diff-suppr/test1-typedef-suppr-1.suppr \
test-diff-suppr/test1-typedef-suppr-report-0.txt \
test-diff-suppr/test1-typedef-suppr-report-1.txt \
test-diff-suppr/test1-typedef-suppr-report-2.txt \
test-diff-suppr/test2-struct-suppr-0.suppr \
test-diff-suppr/test2-struct-suppr-1.suppr \
test-diff-suppr/test2-struct-suppr-report-0.txt \
test-diff-suppr/test2-struct-suppr-report-1.txt \
test-diff-suppr/test2-struct-suppr-v0.cc \
test-diff-suppr/test2-struct-suppr-v1.cc \
test-diff-suppr/test2-struct-suppr-v0.o \
test-diff-suppr/test2-struct-suppr-v1.o \
test-diff-suppr/test3-struct-suppr-0.suppr \
test-diff-suppr/test3-struct-suppr-1.suppr \
test-diff-suppr/test3-struct-suppr-report-0.txt \
test-diff-suppr/test3-struct-suppr-report-1.txt \
test-diff-suppr/test3-struct-suppr-report-2.txt \
test-diff-suppr/test3-struct-suppr-v0.cc \
test-diff-suppr/test3-struct-suppr-v0.o \
test-diff-suppr/test3-struct-suppr-v1.cc \
test-diff-suppr/test3-struct-suppr-v1.o \
test-diff-suppr/libtest4-local-suppr-v0.so \
test-diff-suppr/libtest4-local-suppr-v1.so \
test-diff-suppr/test4-local-suppr-0.suppr \
test-diff-suppr/test4-local-suppr-report-0.txt \
test-diff-suppr/test4-local-suppr-report-1.txt \
test-diff-suppr/test4-local-suppr-v0.c \
test-diff-suppr/test4-local-suppr-v0.h \
test-diff-suppr/test4-local-suppr-v1.c \
test-diff-suppr/test4-local-suppr-v1.h \
test-diff-suppr/libtest5-fn-suppr-v0.so \
test-diff-suppr/libtest5-fn-suppr-v1.so \
test-diff-suppr/test5-fn-suppr-0.suppr \
test-diff-suppr/test5-fn-suppr-1.suppr \
test-diff-suppr/test5-fn-suppr-2.suppr \
test-diff-suppr/test5-fn-suppr-3.suppr \
test-diff-suppr/test5-fn-suppr-4.suppr \
test-diff-suppr/test5-fn-suppr-report-0.txt \
test-diff-suppr/test5-fn-suppr-report-1.txt \
test-diff-suppr/test5-fn-suppr-report-2.txt \
test-diff-suppr/test5-fn-suppr-report-3.txt \
test-diff-suppr/test5-fn-suppr-report-4.txt \
test-diff-suppr/test5-fn-suppr-report-5.txt \
test-diff-suppr/test5-fn-suppr-v0.cc \
test-diff-suppr/test5-fn-suppr-v1.cc \
test-diff-suppr/libtest6-fn-suppr-v0.so \
test-diff-suppr/libtest6-fn-suppr-v1.so \
test-diff-suppr/test6-fn-suppr-0.suppr \
test-diff-suppr/test6-fn-suppr-1.suppr \
test-diff-suppr/test6-fn-suppr-2.suppr \
test-diff-suppr/test6-fn-suppr-3.suppr \
test-diff-suppr/test6-fn-suppr-report-0.txt \
test-diff-suppr/test6-fn-suppr-report-0-1.txt \
test-diff-suppr/test6-fn-suppr-report-1.txt \
test-diff-suppr/test6-fn-suppr-report-2.txt \
test-diff-suppr/test6-fn-suppr-report-3.txt \
test-diff-suppr/test6-fn-suppr-report-4.txt \
test-diff-suppr/test6-fn-suppr-v0.cc \
test-diff-suppr/test6-fn-suppr-v1.cc \
test-diff-suppr/test6-fn-suppr-version-script \
test-diff-suppr/libtest7-var-suppr-v0.so \
test-diff-suppr/libtest7-var-suppr-v1.so \
test-diff-suppr/test7-var-suppr-v0.cc \
test-diff-suppr/test7-var-suppr-v1.cc \
test-diff-suppr/test7-var-suppr-1.suppr \
test-diff-suppr/test7-var-suppr-2.suppr \
test-diff-suppr/test7-var-suppr-3.suppr \
test-diff-suppr/test7-var-suppr-4.suppr \
test-diff-suppr/test7-var-suppr-5.suppr \
test-diff-suppr/test7-var-suppr-6.suppr \
test-diff-suppr/test7-var-suppr-7.suppr \
test-diff-suppr/test7-var-suppr-8.suppr \
test-diff-suppr/test7-var-suppr-report-0.txt \
test-diff-suppr/test7-var-suppr-report-1.txt \
test-diff-suppr/test7-var-suppr-report-2.txt \
test-diff-suppr/test7-var-suppr-report-3.txt \
test-diff-suppr/test7-var-suppr-report-4.txt \
test-diff-suppr/test7-var-suppr-report-5.txt \
test-diff-suppr/test7-var-suppr-report-6.txt \
test-diff-suppr/test7-var-suppr-report-7.txt \
test-diff-suppr/test7-var-suppr-report-8.txt \
test-diff-suppr/test7-var-suppr-version-script \
test-diff-suppr/libtest8-redundant-fn-v0.so \
test-diff-suppr/libtest8-redundant-fn-v1.so \
test-diff-suppr/test8-redundant-fn-report-0.txt \
test-diff-suppr/test8-redundant-fn-report-1.txt \
test-diff-suppr/test8-redundant-fn-v0.cc \
test-diff-suppr/test8-redundant-fn-v1.cc \
test-diff-suppr/libtest9-changed-parm-c-v0.so \
test-diff-suppr/libtest9-changed-parm-c-v1.so \
test-diff-suppr/test9-changed-parm-c-report-0.txt \
test-diff-suppr/test9-changed-parm-c-report-1.txt \
test-diff-suppr/test9-changed-parm-c-v0.c \
test-diff-suppr/test9-changed-parm-c-v1.c \
test-diff-suppr/libtest10-changed-parm-c-v0.so \
test-diff-suppr/libtest10-changed-parm-c-v1.so \
test-diff-suppr/test10-changed-parm-c-report-0.txt \
test-diff-suppr/test10-changed-parm-c-v0.c \
test-diff-suppr/test10-changed-parm-c-v1.c \
test-diff-suppr/libtest11-add-data-member-v0.so \
test-diff-suppr/libtest11-add-data-member-v1.so \
test-diff-suppr/test11-add-data-member-0.suppr \
test-diff-suppr/test11-add-data-member-1.suppr \
test-diff-suppr/test11-add-data-member-2.suppr \
test-diff-suppr/test11-add-data-member-3.suppr \
test-diff-suppr/test11-add-data-member-4.suppr \
test-diff-suppr/test11-add-data-member-report-0.txt \
test-diff-suppr/test11-add-data-member-report-1.txt \
test-diff-suppr/test11-add-data-member-v0.cc \
test-diff-suppr/test11-add-data-member-v1.cc \
test-diff-suppr/libtest12-add-data-member-v0.so \
test-diff-suppr/libtest12-add-data-member-v1.so \
test-diff-suppr/test12-add-data-member-0.suppr \
test-diff-suppr/test12-add-data-member-1.suppr \
test-diff-suppr/test12-add-data-member-report-0.txt \
test-diff-suppr/test12-add-data-member-report-1.txt \
test-diff-suppr/test12-add-data-member-report-2.txt \
test-diff-suppr/test12-add-data-member-v0.cc \
test-diff-suppr/test12-add-data-member-v1.cc \
test-diff-suppr/libtest13-suppr-through-pointer-v0.so \
test-diff-suppr/libtest13-suppr-through-pointer-v1.so \
test-diff-suppr/test13-suppr-through-pointer-0.suppr \
test-diff-suppr/test13-suppr-through-pointer-report-0.txt \
test-diff-suppr/test13-suppr-through-pointer-report-1.txt \
test-diff-suppr/test13-suppr-through-pointer-v0.cc \
test-diff-suppr/test13-suppr-through-pointer-v1.cc \
test-diff-suppr/test14-suppr-non-redundant-v0.o \
test-diff-suppr/test14-suppr-non-redundant-v1.o \
test-diff-suppr/test14-suppr-non-redundant-0.suppr \
test-diff-suppr/test14-suppr-non-redundant-report-0.txt \
test-diff-suppr/test14-suppr-non-redundant-report-1.txt \
test-diff-suppr/test14-suppr-non-redundant-v0.cc \
test-diff-suppr/test14-suppr-non-redundant-v1.cc \
test-diff-suppr/test15-suppr-added-fn-v0.o \
test-diff-suppr/test15-suppr-added-fn-v1.o \
test-diff-suppr/test15-suppr-added-fn-0.suppr \
test-diff-suppr/test15-suppr-added-fn-1.suppr \
test-diff-suppr/test15-suppr-added-fn-2.suppr \
test-diff-suppr/test15-suppr-added-fn-3.suppr \
test-diff-suppr/test15-suppr-added-fn-4.suppr \
test-diff-suppr/test15-suppr-added-fn-report-0.txt \
test-diff-suppr/test15-suppr-added-fn-report-1.txt \
test-diff-suppr/test15-suppr-added-fn-report-2.txt \
test-diff-suppr/test15-suppr-added-fn-report-3.txt \
test-diff-suppr/test15-suppr-added-fn-report-4.txt \
test-diff-suppr/test15-suppr-added-fn-report-5.txt \
test-diff-suppr/test15-suppr-added-fn-v0.cc \
test-diff-suppr/test15-suppr-added-fn-v1.cc \
test-diff-suppr/test16-suppr-removed-fn-v0.o \
test-diff-suppr/test16-suppr-removed-fn-v1.o \
test-diff-suppr/test16-suppr-removed-fn-0.suppr \
test-diff-suppr/test16-suppr-removed-fn-1.suppr \
test-diff-suppr/test16-suppr-removed-fn-2.suppr \
test-diff-suppr/test16-suppr-removed-fn-3.suppr \
test-diff-suppr/test16-suppr-removed-fn-4.suppr \
test-diff-suppr/test16-suppr-removed-fn-report-0.txt \
test-diff-suppr/test16-suppr-removed-fn-report-1.txt \
test-diff-suppr/test16-suppr-removed-fn-report-2.txt \
test-diff-suppr/test16-suppr-removed-fn-report-3.txt \
test-diff-suppr/test16-suppr-removed-fn-report-4.txt \
test-diff-suppr/test16-suppr-removed-fn-report-5.txt \
test-diff-suppr/test16-suppr-removed-fn-v0.cc \
test-diff-suppr/test16-suppr-removed-fn-v1.cc \
test-diff-suppr/test17-suppr-added-var-v0.o \
test-diff-suppr/test17-suppr-added-var-v1.o \
test-diff-suppr/test17-suppr-added-var-0.suppr \
test-diff-suppr/test17-suppr-added-var-1.suppr \
test-diff-suppr/test17-suppr-added-var-2.suppr \
test-diff-suppr/test17-suppr-added-var-3.suppr \
test-diff-suppr/test17-suppr-added-var-4.suppr \
test-diff-suppr/test17-suppr-added-var-report-0.txt \
test-diff-suppr/test17-suppr-added-var-report-1.txt \
test-diff-suppr/test17-suppr-added-var-report-2.txt \
test-diff-suppr/test17-suppr-added-var-report-3.txt \
test-diff-suppr/test17-suppr-added-var-report-4.txt \
test-diff-suppr/test17-suppr-added-var-report-5.txt \
test-diff-suppr/test17-suppr-added-var-v0.cc \
test-diff-suppr/test17-suppr-added-var-v1.cc \
test-diff-suppr/test18-suppr-removed-var-v0.o \
test-diff-suppr/test18-suppr-removed-var-v1.o \
test-diff-suppr/test18-suppr-removed-var-0.suppr \
test-diff-suppr/test18-suppr-removed-var-1.suppr \
test-diff-suppr/test18-suppr-removed-var-2.suppr \
test-diff-suppr/test18-suppr-removed-var-3.suppr \
test-diff-suppr/test18-suppr-removed-var-4.suppr \
test-diff-suppr/test18-suppr-removed-var-report-0.txt \
test-diff-suppr/test18-suppr-removed-var-report-1.txt \
test-diff-suppr/test18-suppr-removed-var-report-2.txt \
test-diff-suppr/test18-suppr-removed-var-report-3.txt \
test-diff-suppr/test18-suppr-removed-var-report-4.txt \
test-diff-suppr/test18-suppr-removed-var-report-5.txt \
test-diff-suppr/test18-suppr-removed-var-v0.cc \
test-diff-suppr/test18-suppr-removed-var-v1.cc \
test-diff-suppr/test19-suppr-added-fn-sym-v0.o \
test-diff-suppr/test19-suppr-added-fn-sym-v1.o \
test-diff-suppr/test19-suppr-added-fn-sym-0.suppr \
test-diff-suppr/test19-suppr-added-fn-sym-1.suppr \
test-diff-suppr/test19-suppr-added-fn-sym-2.suppr \
test-diff-suppr/test19-suppr-added-fn-sym-3.suppr \
test-diff-suppr/test19-suppr-added-fn-sym-4.suppr \
test-diff-suppr/test19-suppr-added-fn-sym-report-0.txt \
test-diff-suppr/test19-suppr-added-fn-sym-report-1.txt \
test-diff-suppr/test19-suppr-added-fn-sym-report-2.txt \
test-diff-suppr/test19-suppr-added-fn-sym-report-3.txt \
test-diff-suppr/test19-suppr-added-fn-sym-report-4.txt \
test-diff-suppr/test19-suppr-added-fn-sym-report-5.txt \
test-diff-suppr/test19-suppr-added-fn-sym-v0.cc \
test-diff-suppr/test19-suppr-added-fn-sym-v1.cc \
test-diff-suppr/test20-suppr-removed-fn-sym-v0.o \
test-diff-suppr/test20-suppr-removed-fn-sym-v1.o \
test-diff-suppr/test20-suppr-removed-fn-sym-0.suppr \
test-diff-suppr/test20-suppr-removed-fn-sym-1.suppr \
test-diff-suppr/test20-suppr-removed-fn-sym-2.suppr \
test-diff-suppr/test20-suppr-removed-fn-sym-3.suppr \
test-diff-suppr/test20-suppr-removed-fn-sym-4.suppr \
test-diff-suppr/test20-suppr-removed-fn-sym-report-0.txt \
test-diff-suppr/test20-suppr-removed-fn-sym-report-1.txt \
test-diff-suppr/test20-suppr-removed-fn-sym-report-2.txt \
test-diff-suppr/test20-suppr-removed-fn-sym-report-3.txt \
test-diff-suppr/test20-suppr-removed-fn-sym-report-4.txt \
test-diff-suppr/test20-suppr-removed-fn-sym-report-5.txt \
test-diff-suppr/test20-suppr-removed-fn-sym-v0.cc \
test-diff-suppr/test20-suppr-removed-fn-sym-v1.cc \
test-diff-suppr/test21-suppr-added-var-sym-v0.o \
test-diff-suppr/test21-suppr-added-var-sym-v1.o \
test-diff-suppr/test21-suppr-added-var-sym-0.suppr \
test-diff-suppr/test21-suppr-added-var-sym-1.suppr \
test-diff-suppr/test21-suppr-added-var-sym-2.suppr \
test-diff-suppr/test21-suppr-added-var-sym-3.suppr \
test-diff-suppr/test21-suppr-added-var-sym-4.suppr \
test-diff-suppr/test21-suppr-added-var-sym-report-0.txt \
test-diff-suppr/test21-suppr-added-var-sym-report-1.txt \
test-diff-suppr/test21-suppr-added-var-sym-report-2.txt \
test-diff-suppr/test21-suppr-added-var-sym-report-3.txt \
test-diff-suppr/test21-suppr-added-var-sym-report-4.txt \
test-diff-suppr/test21-suppr-added-var-sym-report-5.txt \
test-diff-suppr/test21-suppr-added-var-sym-v0.cc \
test-diff-suppr/test21-suppr-added-var-sym-v1.cc \
test-diff-suppr/test22-suppr-removed-var-sym-v0.o \
test-diff-suppr/test22-suppr-removed-var-sym-v1.o \
test-diff-suppr/test22-suppr-removed-var-sym-0.suppr \
test-diff-suppr/test22-suppr-removed-var-sym-1.suppr \
test-diff-suppr/test22-suppr-removed-var-sym-2.suppr \
test-diff-suppr/test22-suppr-removed-var-sym-3.suppr \
test-diff-suppr/test22-suppr-removed-var-sym-4.suppr \
test-diff-suppr/test22-suppr-removed-var-sym-report-0.txt \
test-diff-suppr/test22-suppr-removed-var-sym-report-1.txt \
test-diff-suppr/test22-suppr-removed-var-sym-report-2.txt \
test-diff-suppr/test22-suppr-removed-var-sym-report-3.txt \
test-diff-suppr/test22-suppr-removed-var-sym-report-4.txt \
test-diff-suppr/test22-suppr-removed-var-sym-report-5.txt \
test-diff-suppr/test22-suppr-removed-var-sym-v0.cc \
test-diff-suppr/test22-suppr-removed-var-sym-v1.cc \
test-diff-suppr/libtest23-alias-filter-v0.so \
test-diff-suppr/libtest23-alias-filter-v1.so \
test-diff-suppr/test23-alias-filter-0.suppr \
test-diff-suppr/test23-alias-filter-1.suppr \
test-diff-suppr/test23-alias-filter-2.suppr \
test-diff-suppr/test23-alias-filter-3.suppr \
test-diff-suppr/test23-alias-filter-4.suppr \
test-diff-suppr/test23-alias-filter-report-0.txt \
test-diff-suppr/test23-alias-filter-report-1.txt \
test-diff-suppr/test23-alias-filter-report-2.txt \
test-diff-suppr/test23-alias-filter-report-3.txt \
test-diff-suppr/test23-alias-filter-report-4.txt \
test-diff-suppr/test23-alias-filter-report-5.txt \
test-diff-suppr/test23-alias-filter-v0.c \
test-diff-suppr/test23-alias-filter-v1.c \
test-diff-suppr/test23-alias-filter-version-script \
test-diff-suppr/libtest24-soname-v0.so \
test-diff-suppr/libtest24-soname-v1.so \
test-diff-suppr/test24-soname-report-0.txt \
test-diff-suppr/test24-soname-report-1.txt \
test-diff-suppr/test24-soname-report-2.txt \
test-diff-suppr/test24-soname-report-3.txt \
test-diff-suppr/test24-soname-report-4.txt \
test-diff-suppr/test24-soname-report-5.txt \
test-diff-suppr/test24-soname-report-6.txt \
test-diff-suppr/test24-soname-report-7.txt \
test-diff-suppr/test24-soname-report-8.txt \
test-diff-suppr/test24-soname-report-9.txt \
test-diff-suppr/test24-soname-report-10.txt \
test-diff-suppr/test24-soname-report-11.txt \
test-diff-suppr/test24-soname-report-12.txt \
test-diff-suppr/test24-soname-report-13.txt \
test-diff-suppr/test24-soname-report-14.txt \
test-diff-suppr/test24-soname-report-15.txt \
test-diff-suppr/test24-soname-report-16.txt \
test-diff-suppr/test24-soname-suppr-0.txt \
test-diff-suppr/test24-soname-suppr-1.txt \
test-diff-suppr/test24-soname-suppr-2.txt \
test-diff-suppr/test24-soname-suppr-3.txt \
test-diff-suppr/test24-soname-suppr-4.txt \
test-diff-suppr/test24-soname-suppr-5.txt \
test-diff-suppr/test24-soname-suppr-6.txt \
test-diff-suppr/test24-soname-suppr-7.txt \
test-diff-suppr/test24-soname-suppr-8.txt \
test-diff-suppr/test24-soname-suppr-9.txt \
test-diff-suppr/test24-soname-suppr-10.txt \
test-diff-suppr/test24-soname-suppr-11.txt \
test-diff-suppr/test24-soname-suppr-12.txt \
test-diff-suppr/test24-soname-suppr-13.txt \
test-diff-suppr/test24-soname-suppr-14.txt \
test-diff-suppr/test24-soname-suppr-15.txt \
test-diff-suppr/test24-soname-suppr-16.txt \
test-diff-suppr/test24-soname-v0.cc \
test-diff-suppr/test24-soname-v1.cc \
test-diff-suppr/libtest25-typedef-v0.so \
test-diff-suppr/libtest25-typedef-v1.so \
test-diff-suppr/test25-typedef-suppr-0.txt \
test-diff-suppr/test25-typedef-report-0.txt \
test-diff-suppr/test25-typedef-report-1.txt\
test-diff-suppr/test25-typedef-v0.c \
test-diff-suppr/test25-typedef-v1.c \
test-diff-suppr/libtest26-loc-suppr-v0.so \
test-diff-suppr/libtest26-loc-suppr-v1.so \
test-diff-suppr/test26-loc-suppr-0.suppr \
test-diff-suppr/test26-loc-suppr-1.suppr \
test-diff-suppr/test26-loc-suppr-2.suppr \
test-diff-suppr/test26-loc-suppr-report-0.txt \
test-diff-suppr/test26-loc-suppr-report-1.txt \
test-diff-suppr/test26-loc-suppr-report-2.txt \
test-diff-suppr/test26-loc-suppr-report-3.txt \
test-diff-suppr/test26-loc-suppr-v0.cc \
test-diff-suppr/test26-loc-suppr-v1.cc \
test-diff-suppr/test26-loc-suppr.h \
test-diff-suppr/test27-add-aliased-function-0.suppr \
test-diff-suppr/test27-add-aliased-function-1.suppr \
test-diff-suppr/test27-add-aliased-function-2.suppr \
test-diff-suppr/test27-add-aliased-function-3.suppr \
test-diff-suppr/test27-add-aliased-function-4.suppr \
test-diff-suppr/test27-add-aliased-function-report-0.txt \
test-diff-suppr/test27-add-aliased-function-report-1.txt \
test-diff-suppr/test27-add-aliased-function-report-2.txt \
test-diff-suppr/test27-add-aliased-function-report-3.txt \
test-diff-suppr/test27-add-aliased-function-report-4.txt \
test-diff-suppr/test27-add-aliased-function-report-5.txt \
test-diff-suppr/test27-add-aliased-function-v0.cc \
test-diff-suppr/test27-add-aliased-function-v0.o \
test-diff-suppr/test27-add-aliased-function-v1.cc \
test-diff-suppr/test27-add-aliased-function-v1.o \
test-diff-suppr/test28-add-aliased-function-0.suppr \
test-diff-suppr/test28-add-aliased-function-1.suppr \
test-diff-suppr/test28-add-aliased-function-2.suppr \
test-diff-suppr/test28-add-aliased-function-3.suppr \
test-diff-suppr/test28-add-aliased-function-4.suppr \
test-diff-suppr/test28-add-aliased-function-5.suppr \
test-diff-suppr/test28-add-aliased-function-report-0.txt \
test-diff-suppr/test28-add-aliased-function-report-1.txt \
test-diff-suppr/test28-add-aliased-function-report-2.txt \
test-diff-suppr/test28-add-aliased-function-report-3.txt \
test-diff-suppr/test28-add-aliased-function-report-4.txt \
test-diff-suppr/test28-add-aliased-function-report-5.txt \
test-diff-suppr/test28-add-aliased-function-report-6.txt \
test-diff-suppr/test28-add-aliased-function-v0.c \
test-diff-suppr/test28-add-aliased-function-v0.o \
test-diff-suppr/test28-add-aliased-function-v1.c \
test-diff-suppr/test28-add-aliased-function-v1.o \
test-diff-suppr/libtest29-soname-v0.so \
test-diff-suppr/libtest29-soname-v1.so \
test-diff-suppr/test29-soname-report-0.txt \
test-diff-suppr/test29-soname-report-1.txt \
test-diff-suppr/test29-soname-report-2.txt \
test-diff-suppr/test29-soname-report-3.txt \
test-diff-suppr/test29-soname-report-4.txt \
test-diff-suppr/test29-soname-report-5.txt \
test-diff-suppr/test29-soname-report-6.txt \
test-diff-suppr/test29-soname-report-7.txt \
test-diff-suppr/test29-soname-report-8.txt \
test-diff-suppr/test29-soname-v0.cc \
test-diff-suppr/test29-soname-v1.cc \
test-diff-suppr/test29-suppr-0.txt \
test-diff-suppr/test29-suppr-1.txt \
test-diff-suppr/test29-suppr-2.txt \
test-diff-suppr/test29-suppr-3.txt \
test-diff-suppr/test29-suppr-4.txt \
test-diff-suppr/test29-suppr-5.txt \
test-diff-suppr/test29-suppr-6.txt \
test-diff-suppr/test29-suppr-7.txt \
test-diff-suppr/test29-suppr-8.txt \
test-diff-suppr/test30-include-dir-v0/test30-pub-lib-v0.h \
test-diff-suppr/test30-include-dir-v1/test30-pub-lib-v1.h \
test-diff-suppr/test30-priv-lib-v0.cc \
test-diff-suppr/test30-priv-lib-v0.h \
test-diff-suppr/test30-priv-lib-v1.cc \
test-diff-suppr/test30-priv-lib-v1.h \
test-diff-suppr/test30-pub-lib-v0.cc \
test-diff-suppr/test30-pub-lib-v0.so \
test-diff-suppr/test30-pub-lib-v1.cc \
test-diff-suppr/test30-pub-lib-v1.so \
test-diff-suppr/test30-report-0.txt \
test-diff-suppr/test30-report-1.txt \
\
test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1 \
test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1.abi \
test-diff-dwarf-abixml/test0-pr19026-libvtkIOSQL-6.1.so.1-report-0.txt \
\
test-lookup-syms/test0.cc \
test-lookup-syms/test0.o \
test-lookup-syms/test0-report.txt \
test-lookup-syms/test01-report.txt \
test-lookup-syms/test02-report.txt \
test-lookup-syms/test1.c \
test-lookup-syms/test1.version-script \
test-lookup-syms/test1.so \
test-lookup-syms/test1-1-report.txt \
test-lookup-syms/test1-2-report.txt \
test-lookup-syms/test1-3-report.txt \
\
test-alt-dwarf-file/test0.cc \
test-alt-dwarf-file/libtest0.so \
test-alt-dwarf-file/test0-common.cc \
test-alt-dwarf-file/libtest0-common.so \
test-alt-dwarf-file/test0-report.txt \
test-alt-dwarf-file/test0-debug-dir/test0-common-dwz.debug \
test-alt-dwarf-file/test0-debug-dir/.build-id/16/7088580c513b439c9ed95fe6a8b29496495f26.debug \
test-alt-dwarf-file/test1-libgromacs_d.so.0.0.0 \
test-alt-dwarf-file/test1-report-0.txt \
test-alt-dwarf-file/test1-libgromacs-debug-dir/.build-id/45/0c27b7c158eecb67822a8639b21735ecfc409f.debug \
test-alt-dwarf-file/test1-libgromacs-debug-dir/.build-id/7c/85cee9a5a59e7d0a866386b47c1674da5d201f.debug \
test-alt-dwarf-file/test1-libgromacs-debug-dir/.dwz/gromacs-5.0.6-4.fc22.x86_64 \
test-alt-dwarf-file/test1-libgromacs-debug-dir/usr/lib64/libgromacs_d.so.0.0.0.debug \
\
test-abicompat/libtest0-fn-changed-libapp-v0.so \
test-abicompat/libtest0-fn-changed-libapp-v1.so \
test-abicompat/test0-fn-changed-app \
test-abicompat/test0-fn-changed-0.suppr \
test-abicompat/test0-fn-changed-1.suppr \
test-abicompat/test0-fn-changed-app.cc \
test-abicompat/test0-fn-changed-report-0.txt \
test-abicompat/test0-fn-changed-report-1.txt \
test-abicompat/test0-fn-changed-report-2.txt \
test-abicompat/test0-fn-changed-report-3.txt \
test-abicompat/test0-fn-changed-libapp.h \
test-abicompat/test0-fn-changed-libapp-v0.cc \
test-abicompat/test0-fn-changed-libapp-v1.cc \
test-abicompat/libtest1-fn-removed-v0.so \
test-abicompat/libtest1-fn-removed-v1.so \
test-abicompat/test1-fn-removed-app \
test-abicompat/test1-fn-removed-app.cc \
test-abicompat/test1-fn-removed-report-0.txt \
test-abicompat/test1-fn-removed-v0.cc \
test-abicompat/test1-fn-removed-v1.cc \
test-abicompat/libtest2-var-removed-v0.so \
test-abicompat/libtest2-var-removed-v1.so \
test-abicompat/test2-var-removed-app \
test-abicompat/test2-var-removed-app.cc \
test-abicompat/test2-var-removed-report-0.txt \
test-abicompat/test2-var-removed-v0.cc \
test-abicompat/test2-var-removed-v1.cc \
test-abicompat/libtest3-fn-removed-v0.so \
test-abicompat/libtest3-fn-removed-v1.so \
test-abicompat/test3-fn-removed-app \
test-abicompat/test3-fn-removed-app.cc \
test-abicompat/test3-fn-removed-report-0.txt \
test-abicompat/test3-fn-removed-v0.cc \
test-abicompat/test3-fn-removed-v1.cc \
test-abicompat/test3-fn-removed-version-script-0 \
test-abicompat/test3-fn-removed-version-script-1 \
test-abicompat/libtest4-soname-changed-v0.so \
test-abicompat/libtest4-soname-changed-v1.so \
test-abicompat/test4-soname-changed-app \
test-abicompat/test4-soname-changed-app.cc \
test-abicompat/test4-soname-changed-v0.cc \
test-abicompat/test4-soname-changed-v1.cc \
test-abicompat/test4-soname-changed-report-0.txt \
test-abicompat/libtest5-fn-changed-libapp-v0.so \
test-abicompat/libtest5-fn-changed-libapp-v1.so \
test-abicompat/test5-fn-changed-app \
test-abicompat/test5-fn-changed-app.cc \
test-abicompat/test5-fn-changed-libapp-v0.cc \
test-abicompat/test5-fn-changed-libapp-v1.cc \
test-abicompat/test5-fn-changed-report-0.txt \
test-abicompat/test5-fn-changed-report-1.txt \
test-abicompat/libtest6-var-changed-libapp-v0.so \
test-abicompat/libtest6-var-changed-libapp-v1.so \
test-abicompat/test6-var-changed-app \
test-abicompat/test6-var-changed-app.cc \
test-abicompat/test6-var-changed-libapp-v0.cc \
test-abicompat/test6-var-changed-libapp-v1.cc \
test-abicompat/test6-var-changed-report-0.txt \
test-abicompat/test6-var-changed-report-1.txt \
test-abicompat/libtest7-fn-changed-libapp-v0.so \
test-abicompat/libtest7-fn-changed-libapp-v1.so \
test-abicompat/test7-fn-changed-app \
test-abicompat/test7-fn-changed-app.c \
test-abicompat/test7-fn-changed-libapp-v0.c \
test-abicompat/test7-fn-changed-libapp-v0.h \
test-abicompat/test7-fn-changed-libapp-v1.c \
test-abicompat/test7-fn-changed-libapp-v1.h \
test-abicompat/test7-fn-changed-report-0.txt \
test-abicompat/test7-fn-changed-report-1.txt \
test-abicompat/test7-fn-changed-report-2.txt \
test-abicompat/libtest8-fn-changed-libapp-v0.so \
test-abicompat/libtest8-fn-changed-libapp-v1.so \
test-abicompat/test8-fn-changed-app \
test-abicompat/test8-fn-changed-app.c \
test-abicompat/test8-fn-changed-libapp-v0.c \
test-abicompat/test8-fn-changed-libapp-v0.h \
test-abicompat/test8-fn-changed-libapp-v1.c \
test-abicompat/test8-fn-changed-libapp-v1.h \
test-abicompat/test8-fn-changed-report-0.txt \
test-abicompat/libtest9-fn-changed-v0.so \
test-abicompat/libtest9-fn-changed-v1.so \
test-abicompat/test9-fn-changed-app.cc \
test-abicompat/test9-fn-changed-v0.cc \
test-abicompat/test9-fn-changed-v0.h \
test-abicompat/test9-fn-changed-v1.cc \
test-abicompat/test9-fn-changed-v1.h \
test-abicompat/test9-fn-changed-app \
test-abicompat/test9-fn-changed-report-0.txt \
\
test-diff-pkg/dbus-glib-0.104-3.fc23.x86_64.rpm \
test-diff-pkg/dbus-glib-0.80-3.fc12.x86_64.rpm \
test-diff-pkg/dbus-glib-debuginfo-0.104-3.fc23.x86_64.rpm \
test-diff-pkg/dbus-glib-debuginfo-0.80-3.fc12.x86_64.rpm \
test-diff-pkg/test-rpm-report-0.txt \
test-diff-pkg/test-rpm-report-1.txt \
test-diff-pkg/test-rpm-report-2.txt \
test-diff-pkg/test-rpm-report-3.txt \
test-diff-pkg/test-rpm-report-4.txt \
test-diff-pkg/test-rpm-report-5.txt \
test-diff-pkg/libsigc++-2.0-0c2a-dbgsym_2.4.0-1_amd64.ddeb \
test-diff-pkg/libsigc++-2.0-0c2a_2.4.0-1_amd64--libsigc++-2.0-0v5_2.4.1-1ubuntu2_amd64-report-0.txt \
test-diff-pkg/libsigc++-2.0-0c2a_2.4.0-1_amd64.deb \
test-diff-pkg/libsigc++-2.0-0v5-dbgsym_2.4.1-1ubuntu2_amd64.ddeb \
test-diff-pkg/libsigc++-2.0-0v5_2.4.1-1ubuntu2_amd64.deb \
test-diff-pkg/dirpkg-0-dir1/dir.abignore \
test-diff-pkg/dirpkg-0-dir1/libobj-v0.so \
test-diff-pkg/dirpkg-0-dir1/obj-v0.cc \
test-diff-pkg/dirpkg-0-dir2/libobj-v0.so \
test-diff-pkg/dirpkg-0-dir2/obj-v0.cc \
test-diff-pkg/dirpkg-0-report-0.txt \
test-diff-pkg/dirpkg-1-dir1/libobj-v0.so \
test-diff-pkg/dirpkg-1-dir1/obj-v0.cc \
test-diff-pkg/dirpkg-1-dir2/dir.abignore \
test-diff-pkg/dirpkg-1-dir2/libobj-v0.so \
test-diff-pkg/dirpkg-1-dir2/obj-v0.cc \
test-diff-pkg/dirpkg-1-report-0.txt \
test-diff-pkg/dirpkg-1-report-1.txt \
test-diff-pkg/dirpkg-2-dir1/libobj-v0.so \
test-diff-pkg/dirpkg-2-dir1/obj-v0.cc \
test-diff-pkg/dirpkg-2-dir2/.abignore \
test-diff-pkg/dirpkg-2-dir2/dir.abignore \
test-diff-pkg/dirpkg-2-dir2/libobj-v0.so \
test-diff-pkg/dirpkg-2-dir2/obj-v0.cc \
test-diff-pkg/dirpkg-2-report-0.txt \
test-diff-pkg/dirpkg-2-report-1.txt \
test-diff-pkg/dirpkg-3-dir1/libobj-v0.so \
test-diff-pkg/dirpkg-3-dir1/obj-v0.cc \
test-diff-pkg/dirpkg-3-dir2/.abignore \
test-diff-pkg/dirpkg-3-dir2/libobj-v0.so \
test-diff-pkg/dirpkg-3-dir2/obj-v0.cc \
test-diff-pkg/dirpkg-3-report-0.txt \
test-diff-pkg/dirpkg-3-report-1.txt \
test-diff-pkg/dirpkg-3-report-2.txt \
test-diff-pkg/dirpkg-3.suppr \
test-diff-pkg/symlink-dir-test1-report0.txt \
test-diff-pkg/symlink-dir-test1/dir1/symlinks/foo.o \
test-diff-pkg/symlink-dir-test1/dir1/symlinks/libfoo.so \
test-diff-pkg/symlink-dir-test1/dir1/targets/foo.c \
test-diff-pkg/symlink-dir-test1/dir1/targets/foo.o \
test-diff-pkg/symlink-dir-test1/dir1/targets/libfoo.so \
test-diff-pkg/symlink-dir-test1/dir2/symlinks/foo.o \
test-diff-pkg/symlink-dir-test1/dir2/symlinks/libfoo.so \
test-diff-pkg/symlink-dir-test1/dir2/targets/foo.c \
test-diff-pkg/symlink-dir-test1/dir2/targets/foo.o \
test-diff-pkg/symlink-dir-test1/dir2/targets/libfoo.so \
test-diff-pkg/tarpkg-0-dir1.tar \
test-diff-pkg/tarpkg-0-dir1.ta \
test-diff-pkg/tarpkg-0-dir1.tar.bz2 \
test-diff-pkg/tarpkg-0-dir1.tar.gz \
test-diff-pkg/tarpkg-0-dir2.tar \
test-diff-pkg/tarpkg-0-dir2.ta \
test-diff-pkg/tarpkg-0-dir2.tar.bz2 \
test-diff-pkg/tarpkg-0-dir2.tar.gz \
test-diff-pkg/tarpkg-0-report-0.txt \
test-diff-pkg/qemu-kvm-rhev-debuginfo-2.3.0-7.el7.ppc64.rpm \
test-diff-pkg/qemu-kvm-rhev-debuginfo-2.3.0-20.el7.ppc64.rpm \
test-diff-pkg/qemu-img-rhev-2.3.0-7.el7.ppc64.rpm \
test-diff-pkg/qemu-img-rhev-2.3.0-20.el7.ppc64.rpm \
test-diff-pkg/qemu-img-rhev-2.3.0-7.el7.ppc64--qemu-img-rhev-2.3.0-20.el7.ppc64-report-0.txt \
test-diff-pkg/empty-pkg-libvirt-0.9.11.3-1.el7.ppc64.rpm \
test-diff-pkg/empty-pkg-libvirt-1.2.17-13.el7_2.2.ppc64.rpm \
test-diff-pkg/empty-pkg-report-0.txt \
test-diff-pkg/tbb-4.1-9.20130314.fc22.x86_64.rpm \
test-diff-pkg/tbb-4.3-3.20141204.fc23.x86_64.rpm \
test-diff-pkg/tbb-debuginfo-4.1-9.20130314.fc22.x86_64.rpm \
test-diff-pkg/tbb-debuginfo-4.3-3.20141204.fc23.x86_64.rpm \
test-diff-pkg/tbb-devel-4.1-9.20130314.fc22.x86_64.rpm \
test-diff-pkg/tbb-devel-4.3-3.20141204.fc23.x86_64.rpm \
test-diff-pkg/tbb-4.1-9.20130314.fc22.x86_64--tbb-4.3-3.20141204.fc23.x86_64-report-0.txt \
test-diff-pkg/tbb-4.1-9.20130314.fc22.x86_64--tbb-4.3-3.20141204.fc23.x86_64-report-1.txt \
test-diff-pkg/libICE-debuginfo-1.0.6-1.el6.x86_64.rpm \
test-diff-pkg/libICE-debuginfo-1.0.9-2.el7.x86_64.rpm \
test-diff-pkg/libICE-1.0.6-1.el6.x86_64.rpm \
test-diff-pkg/libICE-1.0.9-2.el7.x86_64.rpm \
test-diff-pkg/libICE-1.0.6-1.el6.x86_64.rpm--libICE-1.0.9-2.el7.x86_64.rpm-report-0.txt \
test-diff-pkg/gtk2-debuginfo-2.24.22-5.el7.i686.rpm \
test-diff-pkg/gtk2-debuginfo-2.24.28-8.el7.i686.rpm \
test-diff-pkg/gtk2-immodule-xim-2.24.22-5.el7.i686--gtk2-immodule-xim-2.24.28-8.el7.i686-report-0.txt \
test-diff-pkg/gtk2-immodule-xim-2.24.22-5.el7.i686.rpm \
test-diff-pkg/gtk2-immodule-xim-2.24.28-8.el7.i686.rpm \
test-diff-pkg/tarpkg-1-dir1.tar.gz \
test-diff-pkg/tarpkg-1-dir2.tar.gz \
test-diff-pkg/tarpkg-1-report-0.txt