diff options
| author | Tamas Berghammer <tberghammer@google.com> | 2015-02-25 13:26:28 +0000 |
|---|---|---|
| committer | Tamas Berghammer <tberghammer@google.com> | 2015-02-25 13:26:28 +0000 |
| commit | 765b5e5bfe675cfaca24a1ab4e6706ce383c00ff (patch) | |
| tree | 675f239fa9cf50f9dcb2bb9d586dd8abe25dac43 /lldb/test/functionalities/thread | |
| parent | 14f4476a881210f8d20f0552c07a6868d6ae8190 (diff) | |
| download | bcm5719-llvm-765b5e5bfe675cfaca24a1ab4e6706ce383c00ff.tar.gz bcm5719-llvm-765b5e5bfe675cfaca24a1ab4e6706ce383c00ff.zip | |
Remove use_pthread option from getBuildFlags in the test environment
Removing the option to require the usage of pthread based on an argument
of the getBuildFlags method in lldbtest.py because it can be specified
by a variable in the makefile for the given test case. Using the
variable in the makefile works in all supported platforms.
Differential revision: http://reviews.llvm.org/D7861
llvm-svn: 230493
Diffstat (limited to 'lldb/test/functionalities/thread')
4 files changed, 4 insertions, 0 deletions
diff --git a/lldb/test/functionalities/thread/create_after_attach/Makefile b/lldb/test/functionalities/thread/create_after_attach/Makefile index 3b5a8a30fa4..937a69e0576 100644 --- a/lldb/test/functionalities/thread/create_after_attach/Makefile +++ b/lldb/test/functionalities/thread/create_after_attach/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make +ENABLE_THREADS := YES C_SOURCES := main.c include $(LEVEL)/Makefile.rules diff --git a/lldb/test/functionalities/thread/exit_during_step/Makefile b/lldb/test/functionalities/thread/exit_during_step/Makefile index 26db4816b6e..d06a7d4685f 100644 --- a/lldb/test/functionalities/thread/exit_during_step/Makefile +++ b/lldb/test/functionalities/thread/exit_during_step/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make +ENABLE_THREADS := YES CXX_SOURCES := main.cpp include $(LEVEL)/Makefile.rules diff --git a/lldb/test/functionalities/thread/jump/Makefile b/lldb/test/functionalities/thread/jump/Makefile index 9d032c106de..b726fc3695f 100644 --- a/lldb/test/functionalities/thread/jump/Makefile +++ b/lldb/test/functionalities/thread/jump/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make +ENABLE_THREADS := YES CXX_SOURCES := main.cpp other.cpp include $(LEVEL)/Makefile.rules diff --git a/lldb/test/functionalities/thread/thread_exit/Makefile b/lldb/test/functionalities/thread/thread_exit/Makefile index 26db4816b6e..d06a7d4685f 100644 --- a/lldb/test/functionalities/thread/thread_exit/Makefile +++ b/lldb/test/functionalities/thread/thread_exit/Makefile @@ -1,4 +1,5 @@ LEVEL = ../../../make +ENABLE_THREADS := YES CXX_SOURCES := main.cpp include $(LEVEL)/Makefile.rules |

