This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9e31dd76e32 Rename TapiTests to TextAPITests new 18952b81f88 [elfabi] Introduce tool for ELF TextAPI
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: test/CMakeLists.txt | 1 + test/tools/llvm-elfabi/binary-read-arch.test | 15 +++ test/tools/llvm-elfabi/fail-file-open.test | 5 + test/tools/llvm-elfabi/read-unsupported-file.test | 7 ++ test/tools/llvm-elfabi/replace-soname-tbe.test | 16 +++ .../llvm-elfabi/tbe-emits-current-version.test | 13 +++ test/tools/llvm-elfabi/tbe-read-basic.test | 25 +++++ tools/LLVMBuild.txt | 1 + tools/llvm-elfabi/CMakeLists.txt | 11 ++ tools/llvm-elfabi/ELFObjHandler.cpp | 68 ++++++++++++ tools/llvm-elfabi/ELFObjHandler.h | 33 ++++++ tools/llvm-elfabi/ErrorCollector.cpp | 70 ++++++++++++ tools/llvm-elfabi/ErrorCollector.h | 75 +++++++++++++ tools/llvm-elfabi/LLVMBuild.txt | 22 ++++ tools/llvm-elfabi/llvm-elfabi.cpp | 120 +++++++++++++++++++++ 15 files changed, 482 insertions(+) create mode 100644 test/tools/llvm-elfabi/binary-read-arch.test create mode 100644 test/tools/llvm-elfabi/fail-file-open.test create mode 100644 test/tools/llvm-elfabi/read-unsupported-file.test create mode 100644 test/tools/llvm-elfabi/replace-soname-tbe.test create mode 100644 test/tools/llvm-elfabi/tbe-emits-current-version.test create mode 100644 test/tools/llvm-elfabi/tbe-read-basic.test create mode 100644 tools/llvm-elfabi/CMakeLists.txt create mode 100644 tools/llvm-elfabi/ELFObjHandler.cpp create mode 100644 tools/llvm-elfabi/ELFObjHandler.h create mode 100644 tools/llvm-elfabi/ErrorCollector.cpp create mode 100644 tools/llvm-elfabi/ErrorCollector.h create mode 100644 tools/llvm-elfabi/LLVMBuild.txt create mode 100644 tools/llvm-elfabi/llvm-elfabi.cpp