mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-06 14:47:32 +00:00
The Git repository of the Libabigail Project
When two virtual members functions have the same virtual index, the same pretty representation, and one of them has no ELF symbols, then they might be sorted in a way or in an other. This sorting hazard breaks the runtestreaddwarf test on EL6. This patch addresses that to make the virtual member function that has no ELF symbol to come before the one with an ELF symbol. Also, it turned out that runtestannotate is broken on EL6 too because we are trying to demangle c++11-mangled symbols in there, and the demangler (which is C++<11 only) on that platform doesn't really like that. So this patch removes the tests in which there are c++11 symbols that we try to demangle. * src/abg-ir.cc (virtual_member_function_less_than::operator()): Update comment. When two virtual functions have the same virtual index and one of them has no ELF symbol, then that function is less than the one with an ELF symbol. * tests/data/Makefile.am: Remove test-annotate/{test9-pr18818-clang.so.abi, test11-pr18828.so.abi, test12-pr18844.so.abi, test16-pr18904.so.abi, test22-pr19097-libstdc++.so.6.0.17.so.abi}. * tests/data/test-annotate/test10-pr18818-gcc.so.abi: Remove. * tests/data/test-annotate/test11-pr18828.so.abi: Likewise. * tests/data/test-annotate/test12-pr18844.so.abi: Likewise. * tests/data/test-annotate/test16-pr18904.so.abi: Likewise. * tests/data/test-annotate/test22-pr19097-libstdc++.so.6.0.17.so.abi: Likewise. * tests/test-annotate.cc (in_out_specs): Remove those tests above which input files have been removed. Signed-off-by: Dodji Seketeli <dodji@redhat.com> |
||
---|---|---|
autoconf-archive | ||
bash-completion | ||
doc | ||
include | ||
m4 | ||
scripts | ||
src | ||
tests | ||
tools | ||
.gitignore | ||
abigail.m4 | ||
AUTHORS | ||
ChangeLog | ||
COMMIT-LOG-GUIDELINES | ||
COMPILING | ||
configure.ac | ||
CONTRIBUTING | ||
COPYING | ||
COPYING-GPLV3 | ||
COPYING-LGPLV2 | ||
COPYING-LGPLV3 | ||
default.abignore | ||
gen-changelog.py | ||
install-sh | ||
libabigail.pc.in | ||
ltmain.sh | ||
Makefile.am | ||
NEWS | ||
README | ||
release-text-template.txt | ||
VISIBILITY |
This is the Application Binary Interface Generic Analysis and Instrumentation Library. It aims at constructing, manipulating, serializing and de-serializing ABI-relevant artifacts. The set of artifacts that we are intersted is made of quantities like types, variable, fonctions and declarations of a given library or program. For a given library or program this set of quantities is called an ABI corpus. This library aims at (among other things) providing a way to compare two ABI Corpora (apparently the plural of corpus is copora, heh, that's cool), provide detailed information about their differences, and help build tools to infer interesting conclusions about these differences. You are welcome to contribute to this project after reading the files CONTRIBUTING and COMMIT-LOG-GUIDELINES files in the source tree. Communicating with the maintainers of this project -- including sending patches to be include to the source code -- happens via email at libabigail@sourceware.org.