libabigail/tests/data/test-diff-suppr
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
..
test30-include-dir-v0 Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-include-dir-v1 Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
libtest4-local-suppr-v0.so Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
libtest4-local-suppr-v1.so Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
libtest5-fn-suppr-v0.so Initial support for function suppressions 2014-10-28 17:36:32 +01:00
libtest5-fn-suppr-v1.so Initial support for function suppressions 2014-10-28 17:36:32 +01:00
libtest6-fn-suppr-v0.so Initial support for function suppressions 2014-10-28 17:36:32 +01:00
libtest6-fn-suppr-v1.so Initial support for function suppressions 2014-10-28 17:36:32 +01:00
libtest7-var-suppr-v0.so Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
libtest7-var-suppr-v1.so Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
libtest8-redundant-fn-v0.so Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
libtest8-redundant-fn-v1.so Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
libtest9-changed-parm-c-v0.so Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
libtest9-changed-parm-c-v1.so Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
libtest10-changed-parm-c-v0.so Do not mark sibling structurally identical nodes as redundant 2014-12-26 18:45:06 +01:00
libtest10-changed-parm-c-v1.so Do not mark sibling structurally identical nodes as redundant 2014-12-26 18:45:06 +01:00
libtest11-add-data-member-v0.so Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
libtest11-add-data-member-v1.so Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
libtest12-add-data-member-v0.so Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
libtest12-add-data-member-v1.so Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
libtest13-suppr-through-pointer-v0.so Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
libtest13-suppr-through-pointer-v1.so Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
libtest23-alias-filter-v0.so Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
libtest23-alias-filter-v1.so Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
libtest24-soname-v0.so Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
libtest24-soname-v1.so Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
libtest25-typedef-v0.so Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
libtest25-typedef-v1.so Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
libtest26-loc-suppr-v0.so Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
libtest26-loc-suppr-v1.so Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
libtest29-soname-v0.so Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
libtest29-soname-v1.so Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test0-type-suppr-0.suppr Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test0-type-suppr-1.suppr Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test0-type-suppr-2.suppr Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test0-type-suppr-3.suppr Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-4.suppr Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-5.suppr Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-6.suppr Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test0-type-suppr-report-1.txt Support comparing symbols not referenced by debug info 2014-10-22 23:04:40 +02:00
test0-type-suppr-report-2.txt Support comparing symbols not referenced by debug info 2014-10-22 23:04:40 +02:00
test0-type-suppr-report-3.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test0-type-suppr-report-4.txt Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-report-5.txt Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-report-6.txt Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-report-7.txt Implement a [suppress_file] suppression directive 2016-05-08 12:39:26 +02:00
test0-type-suppr-v0.cc Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test0-type-suppr-v0.o Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test0-type-suppr-v1.cc Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test0-type-suppr-v1.o Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr-0.suppr Replace is_typedef by type_kind property in type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr-1.suppr Replace is_typedef by type_kind property in type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test1-typedef-suppr-report-1.txt Support comparing symbols not referenced by debug info 2014-10-22 23:04:40 +02:00
test1-typedef-suppr-report-2.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test1-typedef-suppr-v0.c Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr-v0.o Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr-v1.c Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr-v1.o Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test1-typedef-suppr.h Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test2-struct-suppr-0.suppr Fix struct type kind suppression support 2014-10-13 17:44:44 +02:00
test2-struct-suppr-1.suppr Fix struct type kind suppression support 2014-10-13 17:44:44 +02:00
test2-struct-suppr-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test2-struct-suppr-report-1.txt Support comparing symbols not referenced by debug info 2014-10-22 23:04:40 +02:00
test2-struct-suppr-v0.cc Fix struct type kind suppression support 2014-10-13 17:44:44 +02:00
test2-struct-suppr-v0.o Fix struct type kind suppression support 2014-10-13 17:44:44 +02:00
test2-struct-suppr-v1.cc Fix struct type kind suppression support 2014-10-13 17:44:44 +02:00
test2-struct-suppr-v1.o Fix struct type kind suppression support 2014-10-13 17:44:44 +02:00
test3-struct-suppr-0.suppr Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test3-struct-suppr-1.suppr Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test3-struct-suppr-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test3-struct-suppr-report-1.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test3-struct-suppr-report-2.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test3-struct-suppr-v0.cc Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test3-struct-suppr-v0.o Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test3-struct-suppr-v1.cc Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test3-struct-suppr-v1.o Initial support for type suppressions 2014-10-13 17:44:44 +02:00
test4-local-suppr-0.suppr Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
test4-local-suppr-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test4-local-suppr-report-1.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test4-local-suppr-v0.c Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
test4-local-suppr-v0.h Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
test4-local-suppr-v1.c Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
test4-local-suppr-v1.h Properly propagate {REDUNDANT, SUPPRESSED}_CATEGORY wrt local changes 2014-10-13 17:44:44 +02:00
test5-fn-suppr-0.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test5-fn-suppr-1.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test5-fn-suppr-2.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test5-fn-suppr-3.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test5-fn-suppr-4.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test5-fn-suppr-report-0.txt Fix redundancy marking for change of types used directly 2015-06-03 12:13:54 +02:00
test5-fn-suppr-report-1.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test5-fn-suppr-report-2.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test5-fn-suppr-report-3.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test5-fn-suppr-report-4.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test5-fn-suppr-report-5.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test5-fn-suppr-v0.cc Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test5-fn-suppr-v1.cc Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-0.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-1.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-2.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-3.suppr Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-report-0-1.txt Add the option of printing the file, line and column information about a type being reported. 2015-12-15 12:32:55 +01:00
test6-fn-suppr-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test6-fn-suppr-report-1.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test6-fn-suppr-report-2.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test6-fn-suppr-report-3.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test6-fn-suppr-report-4.txt Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-v0.cc Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-v1.cc Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test6-fn-suppr-version-script Initial support for function suppressions 2014-10-28 17:36:32 +01:00
test7-var-suppr-1.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-2.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-3.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-4.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-5.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-6.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-7.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-8.suppr Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-report-0.txt Misc reporting fixes/improvements 2015-04-14 06:16:00 +02:00
test7-var-suppr-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test7-var-suppr-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test7-var-suppr-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test7-var-suppr-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test7-var-suppr-report-5.txt Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-report-6.txt Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-report-7.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test7-var-suppr-report-8.txt Misc reporting fixes/improvements 2015-04-14 06:16:00 +02:00
test7-var-suppr-v0.cc Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-v1.cc Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test7-var-suppr-version-script Initial support for variable suppressions 2014-11-01 12:22:08 +01:00
test8-redundant-fn-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test8-redundant-fn-report-1.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test8-redundant-fn-v0.cc Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
test8-redundant-fn-v1.cc Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
test9-changed-parm-c-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test9-changed-parm-c-report-1.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test9-changed-parm-c-v0.c Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
test9-changed-parm-c-v1.c Un-share diff nodes in the comparison IR 2014-12-26 18:45:06 +01:00
test10-changed-parm-c-report-0.txt Make indexes of function parameters start at 1 2015-05-24 23:33:49 +02:00
test10-changed-parm-c-v0.c Do not mark sibling structurally identical nodes as redundant 2014-12-26 18:45:06 +01:00
test10-changed-parm-c-v1.c Do not mark sibling structurally identical nodes as redundant 2014-12-26 18:45:06 +01:00
test11-add-data-member-0.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-1.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-2.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-3.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-4.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-report-0.txt Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-report-1.txt Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-v0.cc Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test11-add-data-member-v1.cc Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-0.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-1.suppr Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-report-0.txt Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-report-1.txt Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-report-2.txt Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-v0.cc Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test12-add-data-member-v1.cc Support specifying data member insertion in suppressions 2015-05-24 23:43:02 +02:00
test13-suppr-through-pointer-0.suppr Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test13-suppr-through-pointer-report-0.txt Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test13-suppr-through-pointer-report-1.txt Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test13-suppr-through-pointer-v0.cc Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test13-suppr-through-pointer-v1.cc Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-0.suppr Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-report-0.txt Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-report-1.txt Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-v0.cc Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-v0.o Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-v1.cc Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test14-suppr-non-redundant-v1.o Support new 'accessed_through' suppression property 2015-06-04 13:29:32 +02:00
test15-suppr-added-fn-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test15-suppr-added-fn-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test16-suppr-removed-fn-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test17-suppr-added-var-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-report-0.txt Make the name of the removed variable section be consistent 2015-07-24 14:06:29 +02:00
test18-suppr-removed-var-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-report-3.txt Make the name of the removed variable section be consistent 2015-07-24 14:06:29 +02:00
test18-suppr-removed-var-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-report-5.txt Make the name of the removed variable section be consistent 2015-07-24 14:06:29 +02:00
test18-suppr-removed-var-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test18-suppr-removed-var-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test19-suppr-added-fn-sym-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test20-suppr-removed-fn-sym-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test21-suppr-added-var-sym-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-0.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-1.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-2.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-3.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-4.suppr Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-report-0.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-report-1.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-report-2.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-report-3.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-report-4.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-report-5.txt Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-v0.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-v0.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-v1.cc Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test22-suppr-removed-var-sym-v1.o Apply suppression specifications to added and removed functions and variables 2015-06-24 12:09:53 +02:00
test23-alias-filter-0.suppr Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-1.suppr Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-2.suppr Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-3.suppr Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-4.suppr Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-report-0.txt Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-report-1.txt Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-report-2.txt Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-report-3.txt Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-report-4.txt Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-report-5.txt Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-v0.c Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-v1.c Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test23-alias-filter-version-script Support filtering out just one alias of a function 2015-07-02 17:15:35 +02:00
test24-soname-report-0.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-report-1.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-report-2.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-report-3.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-report-4.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-report-5.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-report-6.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-report-7.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-report-8.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-report-9.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-10.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-11.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-12.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-13.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-14.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-15.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-report-16.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-0.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-suppr-1.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-suppr-2.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-suppr-3.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-suppr-4.txt Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-suppr-5.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-suppr-6.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-suppr-7.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-suppr-8.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test24-soname-suppr-9.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-10.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-11.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-12.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-13.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-14.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-15.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-suppr-16.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test24-soname-v0.cc Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test24-soname-v1.cc Support file_name_regexp and soname_regexp in supp-specs 2015-07-19 19:48:51 +02:00
test25-typedef-report-0.txt Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
test25-typedef-report-1.txt Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
test25-typedef-suppr-0.txt Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
test25-typedef-v0.c Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
test25-typedef-v1.c Make applying supp specs through pointer access look through typedefs 2015-08-01 14:34:46 +02:00
test26-loc-suppr-0.suppr Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-1.suppr Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-2.suppr Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-report-0.txt Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-report-1.txt Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-report-2.txt Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-report-3.txt Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-v0.cc Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr-v1.cc Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test26-loc-suppr.h Support source_location_not_in and source_location_not_regexp suppressions 2015-09-16 20:54:40 +02:00
test27-add-aliased-function-0.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-1.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-2.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-3.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-4.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-report-0.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-report-1.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-report-2.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-report-3.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-report-4.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-report-5.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-v0.cc Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-v0.o Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-v1.cc Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test27-add-aliased-function-v1.o Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-0.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-1.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-2.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-3.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-4.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-5.suppr Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-0.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-1.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-2.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-3.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-4.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-5.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-report-6.txt Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-v0.c Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-v0.o Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-v1.c Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test28-add-aliased-function-v1.o Bug 19619 - failing to suppress added aliased function reports for C++ 2016-02-13 08:47:41 +01:00
test29-soname-report-0.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test29-soname-report-1.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test29-soname-report-2.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-report-3.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-report-4.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-report-5.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-report-6.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-report-7.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-report-8.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-soname-v0.cc Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test29-soname-v1.cc Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test29-suppr-0.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test29-suppr-1.txt Ease use of soname_regexp/file_name_regexp in suppr specs 2016-04-16 21:47:20 +02:00
test29-suppr-2.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-suppr-3.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-suppr-4.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-suppr-5.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-suppr-6.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-suppr-7.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test29-suppr-8.txt Bug 20015 - support file_name_not_regexp and soname_not_regexp in suppr specs 2016-04-27 23:58:50 +02:00
test30-priv-lib-v0.cc Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-priv-lib-v0.h Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-priv-lib-v1.cc Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-priv-lib-v1.h Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-pub-lib-v0.cc Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-pub-lib-v0.so Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-pub-lib-v1.cc Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-pub-lib-v1.so Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-report-0.txt Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00
test30-report-1.txt Make abi{pkg}diff filter out changes about private types 2016-05-24 10:32:08 +02:00