forked from OSchip/llvm-project
Only run pretty-printer tests for builds with debug-info.
Reviewers: dblaikie Reviewed By: dblaikie Subscribers: tbosch, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D79897
This commit is contained in:
parent
d3530e95f1
commit
104e38cf76
|
@ -157,3 +157,6 @@ if platform.system() == 'Darwin':
|
|||
if apple_lldb_vers < 1000:
|
||||
config.available_features.add('apple-lldb-pre-1000')
|
||||
|
||||
llvm_config.feature_config([('--build-mode', {
|
||||
'Debug|RelWithDebInfo': 'debug-info'
|
||||
})])
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# 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 --dump-input-on-failure
|
||||
# REQUIRES: debug-info
|
||||
|
||||
break main
|
||||
run
|
||||
|
|
Loading…
Reference in New Issue