summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2019-09-27 09:59:53 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2019-09-27 09:59:53 +0000
commit32a4b27aa3c906e62c532d2372fa5e7db1c0c452 (patch)
treec111e6bab440be838fd97249e4d4d67c5ebb7090 /lldb/packages/Python/lldbsuite/test
parent3740ae3b8aeeb498243504148f666204f9856302 (diff)
downloadbcm5719-llvm-32a4b27aa3c906e62c532d2372fa5e7db1c0c452.tar.gz
bcm5719-llvm-32a4b27aa3c906e62c532d2372fa5e7db1c0c452.zip
[lldb] [testsuite] Remove redundant MAKE_DSYM := NO
According to a comment by Pavel Labath: https://reviews.llvm.org/D67589#inline-612375 llvm-svn: 373061
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile2
-rw-r--r--lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile2
-rw-r--r--lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile2
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile2
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk2
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/order/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile1
-rw-r--r--lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile1
17 files changed, 0 insertions, 22 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile b/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
index f40386a5227..5d62b2860b3 100644
--- a/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
@@ -1,5 +1,3 @@
-MAKE_DSYM := NO
-
ENABLE_THREADS := YES
CXX_SOURCES := multi-process-driver.cpp testprog.cpp
diff --git a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile b/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
index 3316b59b623..de4ec12b13c 100644
--- a/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
@@ -1,5 +1,3 @@
-MAKE_DSYM := NO
-
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
diff --git a/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile b/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
index 8248c01fe6a..05865019c5c 100644
--- a/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/commands/frame/recognizer/Makefile
@@ -1,7 +1,6 @@
OBJC_SOURCES := main.m
CFLAGS_EXTRAS := -g0 # No debug info.
-MAKE_DSYM := NO
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
index 4d1950cf34a..db31e0f2e17 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
@@ -1,6 +1,5 @@
C_SOURCES := main.c
-MAKE_DSYM := NO
ARCHIVE_NAME := libfoo.a
ARCHIVE_C_SOURCES := a.c b.c
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
index c39b681d187..7f30275dd12 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
@@ -11,6 +11,4 @@ else
LDFLAGS = $(CFLAGS) -Wl,--gc-sections
endif
-MAKE_DSYM := NO
-
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
index 3119c370784..38c4112fa8f 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/plugins/command_plugin/Makefile
@@ -1,6 +1,5 @@
DYLIB_CXX_SOURCES := plugin.cpp
DYLIB_NAME := plugin
DYLIB_ONLY := YES
-MAKE_DSYM := NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile b/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
index 0d6f5172939..4ccc4f966a7 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
@@ -1,6 +1,5 @@
CXX_SOURCES := main.cpp
EXE := StripMe
-MAKE_DSYM := NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile b/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
index af03cf6ff5d..b106353a898 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/Makefile
@@ -1,5 +1,3 @@
-MAKE_DSYM := NO
-
C_SOURCES := main.c
all: a.out create-empty-corefile
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk b/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk
index 4967e956679..046d4ad447b 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk
+++ b/lldb/packages/Python/lldbsuite/test/macosx/lc-note/kern-ver-str/create-empty-corefile.mk
@@ -1,5 +1,3 @@
-MAKE_DSYM := NO
-
CXX_SOURCES := create-empty-corefile.cpp
EXE = create-empty-corefile
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile b/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
index ee67988d065..cd50d6dfa04 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
@@ -1,5 +1,4 @@
C_SOURCES := main.c
LD_EXTRAS = -Xlinker -order_file -Xlinker $(SRCDIR)/order-file
-MAKE_DSYM := NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
index c5fa38429c6..10495940055 100644
--- a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
@@ -1,4 +1,3 @@
C_SOURCES := main.c
-MAKE_DSYM :=NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
index 4d11bbc8b6a..08f36f4f116 100644
--- a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
@@ -1,6 +1,5 @@
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-MAKE_DSYM := NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
index 6b33049a78b..08f36f4f116 100644
--- a/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
@@ -1,6 +1,5 @@
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-MAKE_DSYM :=NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile b/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
index 79209db9696..a92c3370e4f 100644
--- a/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
@@ -1,6 +1,5 @@
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp b.cpp c.cpp
-MAKE_DSYM :=NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
index 0c441eda98b..32bbba57db6 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
@@ -1,6 +1,5 @@
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS -D__STDC_FORMAT_MACROS
ENABLE_THREADS := YES
CXX_SOURCES := main.cpp
-MAKE_DSYM :=NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
index 536d2e8db48..72aaf4500d0 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
@@ -1,6 +1,5 @@
CFLAGS_EXTRAS := -D__STDC_LIMIT_MACROS -D__STDC_FORMAT_MACROS -std=c++11
# LD_EXTRAS := -lpthread
CXX_SOURCES := main.cpp
-MAKE_DSYM :=NO
include Makefile.rules
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
index e5ed078d1e3..ec215dd0527 100644
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/libraries-svr4/Makefile
@@ -2,7 +2,6 @@ LIB_PREFIX := svr4lib
LD_EXTRAS := -L. -l$(LIB_PREFIX)_a -l$(LIB_PREFIX)_b\"
CXX_SOURCES := main.cpp
USE_LIBDL := 1
-MAKE_DSYM := NO
include Makefile.rules
OpenPOWER on IntegriCloud