[Lldb-commits] [lldb] r230828 - Fixed pthread linking errors in test binaries

Vince Harron vharron at google.com
Fri Feb 27 16:51:07 PST 2015


Author: vharron
Date: Fri Feb 27 18:51:06 2015
New Revision: 230828

URL: http://llvm.org/viewvc/llvm-project?rev=230828&view=rev
Log:
Fixed pthread linking errors in test binaries

Fixes these tests:

TestBreakAfterJoin.py
TestCreateDuringStep.py
TestExitDuringBreak.py
TestMultipleBreakpoints.py


Modified:
    lldb/trunk/test/functionalities/thread/break_after_join/Makefile
    lldb/trunk/test/functionalities/thread/create_during_step/Makefile
    lldb/trunk/test/functionalities/thread/exit_during_break/Makefile
    lldb/trunk/test/functionalities/thread/multi_break/Makefile

Modified: lldb/trunk/test/functionalities/thread/break_after_join/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/break_after_join/Makefile?rev=230828&r1=230827&r2=230828&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/break_after_join/Makefile (original)
+++ lldb/trunk/test/functionalities/thread/break_after_join/Makefile Fri Feb 27 18:51:06 2015
@@ -1,4 +1,5 @@
 LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
+ENABLE_THREADS := YES
 include $(LEVEL)/Makefile.rules

Modified: lldb/trunk/test/functionalities/thread/create_during_step/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/create_during_step/Makefile?rev=230828&r1=230827&r2=230828&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/create_during_step/Makefile (original)
+++ lldb/trunk/test/functionalities/thread/create_during_step/Makefile Fri Feb 27 18:51:06 2015
@@ -1,4 +1,5 @@
 LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
+ENABLE_THREADS := YES
 include $(LEVEL)/Makefile.rules

Modified: lldb/trunk/test/functionalities/thread/exit_during_break/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/exit_during_break/Makefile?rev=230828&r1=230827&r2=230828&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/exit_during_break/Makefile (original)
+++ lldb/trunk/test/functionalities/thread/exit_during_break/Makefile Fri Feb 27 18:51:06 2015
@@ -1,4 +1,5 @@
 LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
+ENABLE_THREADS := YES
 include $(LEVEL)/Makefile.rules

Modified: lldb/trunk/test/functionalities/thread/multi_break/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/multi_break/Makefile?rev=230828&r1=230827&r2=230828&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/multi_break/Makefile (original)
+++ lldb/trunk/test/functionalities/thread/multi_break/Makefile Fri Feb 27 18:51:06 2015
@@ -1,4 +1,5 @@
 LEVEL = ../../../make
 
 CXX_SOURCES := main.cpp
+ENABLE_THREADS := YES
 include $(LEVEL)/Makefile.rules





More information about the lldb-commits mailing list