diff options
author | Vince Harron <vharron@google.com> | 2015-02-28 00:51:06 +0000 |
---|---|---|
committer | Vince Harron <vharron@google.com> | 2015-02-28 00:51:06 +0000 |
commit | 7863d7634e6f49b109a6015a4178a1cb82837f79 (patch) | |
tree | 1705ba7ebb5694b3bb84d1847b5a8ce74e421abd | |
parent | a226e6115c5f591fcd68bcfd10cf872c155c0e2c (diff) | |
download | bcm5719-llvm-7863d7634e6f49b109a6015a4178a1cb82837f79.tar.gz bcm5719-llvm-7863d7634e6f49b109a6015a4178a1cb82837f79.zip |
Fixed pthread linking errors in test binaries
Fixes these tests:
TestBreakAfterJoin.py
TestCreateDuringStep.py
TestExitDuringBreak.py
TestMultipleBreakpoints.py
llvm-svn: 230828
4 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/functionalities/thread/break_after_join/Makefile b/lldb/test/functionalities/thread/break_after_join/Makefile index 26db4816b6e..67aa16625bf 100644 --- a/lldb/test/functionalities/thread/break_after_join/Makefile +++ b/lldb/test/functionalities/thread/break_after_join/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make CXX_SOURCES := main.cpp +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules diff --git a/lldb/test/functionalities/thread/create_during_step/Makefile b/lldb/test/functionalities/thread/create_during_step/Makefile index 26db4816b6e..67aa16625bf 100644 --- a/lldb/test/functionalities/thread/create_during_step/Makefile +++ b/lldb/test/functionalities/thread/create_during_step/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make CXX_SOURCES := main.cpp +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules diff --git a/lldb/test/functionalities/thread/exit_during_break/Makefile b/lldb/test/functionalities/thread/exit_during_break/Makefile index 26db4816b6e..67aa16625bf 100644 --- a/lldb/test/functionalities/thread/exit_during_break/Makefile +++ b/lldb/test/functionalities/thread/exit_during_break/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make CXX_SOURCES := main.cpp +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules diff --git a/lldb/test/functionalities/thread/multi_break/Makefile b/lldb/test/functionalities/thread/multi_break/Makefile index 26db4816b6e..67aa16625bf 100644 --- a/lldb/test/functionalities/thread/multi_break/Makefile +++ b/lldb/test/functionalities/thread/multi_break/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make CXX_SOURCES := main.cpp +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules |