diff options
author | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-12-26 18:21:30 +0300 |
---|---|---|
committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-12-26 18:49:36 +0300 |
commit | db1fa62bf8241cc623b63feca2cfae7d79da6577 (patch) | |
tree | f7cd365051a19238ae674d2cfdf03988f9afff80 /lldb/packages/Python/lldbsuite | |
parent | e2d3eb00ccd8bd789636464791f4acdd6e0c4583 (diff) | |
download | bcm5719-llvm-db1fa62bf8241cc623b63feca2cfae7d79da6577.tar.gz bcm5719-llvm-db1fa62bf8241cc623b63feca2cfae7d79da6577.zip |
[lldb][test] Don't include "test_common.h" in the debug macros test
GCC produces incorrect .debug_macro section when "-include" option is used:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93075.
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile b/lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile index a7549f24ea7..a2af5c4ce70 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/macros/Makefile @@ -2,5 +2,8 @@ CXX_SOURCES := main.cpp DEBUG_INFO_FLAG = -g3 -gdwarf-5 +# GCC produces incorrect .debug_macro section when "-include" option is used: +# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93075. +NO_TEST_COMMON_H := 1 include Makefile.rules |