diff options
author | Tamas Berghammer <tberghammer@google.com> | 2015-12-15 12:11:00 +0000 |
---|---|---|
committer | Tamas Berghammer <tberghammer@google.com> | 2015-12-15 12:11:00 +0000 |
commit | 0ecdae1bdca95fb69985fac0dbf9332b0df759ae (patch) | |
tree | 5182a5fb0e2c1be126b98b22c25b66ddd1660eb3 /lldb/packages/Python/lldbsuite/test/functionalities/thread | |
parent | d60e2a3ebfe8a2e40e7b396ac5eba5ac8c53a62c (diff) | |
download | bcm5719-llvm-0ecdae1bdca95fb69985fac0dbf9332b0df759ae.tar.gz bcm5719-llvm-0ecdae1bdca95fb69985fac0dbf9332b0df759ae.zip |
Merge ENABLE_THREADS and ENABLE_STD_THREADS markers
Both of these markers are used in the test suit for annotating when a
test needs multi threaded support. Previously they had slightly
different meening but they converged to the point where they are used
interchangably. This CL removes the ENABLE_STD_THREADS one to simplify
the test suite and avoid some confusion.
Differential revision: http://reviews.llvm.org/D15498
llvm-svn: 255641
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/thread')
4 files changed, 8 insertions, 8 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/thread/Makefile index 6f51b234440..644e2971a2c 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/Makefile @@ -1,5 +1,5 @@ LEVEL = ../../make CXX_SOURCES := main.cpp -ENABLE_STD_THREADS := YES +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile index 90ec8b9d913..24e68012ebd 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile @@ -2,5 +2,5 @@ LEVEL = ../../../make CXXFLAGS += -std=c++11 CXX_SOURCES := ParallelTask.cpp -ENABLE_STD_THREADS := YES +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile index 85080d5b9a4..67aa16625bf 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile @@ -1,5 +1,5 @@ LEVEL = ../../../make CXX_SOURCES := main.cpp -ENABLE_STD_THREADS := YES +ENABLE_THREADS := YES include $(LEVEL)/Makefile.rules diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile index 30c1547e35b..67aa16625bf 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile @@ -1,5 +1,5 @@ -LEVEL = ../../../make
-
-CXX_SOURCES := main.cpp
-ENABLE_STD_THREADS := YES
-include $(LEVEL)/Makefile.rules
+LEVEL = ../../../make + +CXX_SOURCES := main.cpp +ENABLE_THREADS := YES +include $(LEVEL)/Makefile.rules |