Rename prettyprinters test to llvm-support.

Summary: Make room for mlir-support pretty printers that I would like to add next.

Reviewers: dblaikie

Reviewed By: dblaikie

Subscribers: merge_guards_bot, mgorny, rriddle, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D73726
This commit is contained in:
Christian Sigg 2020-01-31 12:19:36 +01:00
parent 0082f1e0cc
commit 5a21d2bbb9
3 changed files with 9 additions and 5 deletions

View File

@ -2,10 +2,10 @@
# various types of debug info, and then run those programs under a debugger
# such as GDB or LLDB to verify the results.
add_llvm_executable(prettyprinters
llvm-prettyprinters/gdb/prettyprinters.cpp
add_llvm_executable(check-gdb-llvm-support
llvm-prettyprinters/gdb/llvm-support.cpp
)
target_link_libraries(prettyprinters PRIVATE LLVMSupport)
target_link_libraries(check-gdb-llvm-support PRIVATE LLVMSupport)
set(DEBUGINFO_TESTS_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR})
set(DEBUGINFO_TESTS_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
@ -15,8 +15,8 @@ set(DEBUGINFO_TEST_DEPS
FileCheck
count
llvm-objdump
check-gdb-llvm-support
not
prettyprinters
)
# The Windows builder scripts pass -fuse-ld=lld.

View File

@ -47,4 +47,8 @@ auto SimpleIlist = []() {
return Result;
}();
// Check expected instances to avoid compile errors.
auto CheckExpectedValue = static_cast<bool>(ExpectedValue);
auto CheckExpectedError = static_cast<bool>(ExpectedError);
int main() { return 0; }

View File

@ -1,4 +1,4 @@
# RUN: gdb -q -batch -n -iex 'source %llvm_src_root/utils/gdb-scripts/prettyprinters.py' -x %s %llvm_tools_dir/prettyprinters | FileCheck %s
# RUN: gdb -q -batch -n -iex 'source %llvm_src_root/utils/gdb-scripts/prettyprinters.py' -x %s %llvm_tools_dir/check-gdb-llvm-support | FileCheck %s
break main
run