[Lldb-commits] [lldb] 54c2c2a - Maybe I need ENABLE_THREADS in the Makefile.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Thu May 21 18:39:21 PDT 2020


Author: Jim Ingham
Date: 2020-05-21T18:38:49-07:00
New Revision: 54c2c2add7ad42ce1910a276cd1cd2912af4cddd

URL: https://github.com/llvm/llvm-project/commit/54c2c2add7ad42ce1910a276cd1cd2912af4cddd
DIFF: https://github.com/llvm/llvm-project/commit/54c2c2add7ad42ce1910a276cd1cd2912af4cddd.diff

LOG: Maybe I need ENABLE_THREADS in the Makefile.

Added: 
    

Modified: 
    lldb/test/API/functionalities/thread/exit_during_expression/Makefile
    lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/thread/exit_during_expression/Makefile b/lldb/test/API/functionalities/thread/exit_during_expression/Makefile
index 695335e068c0..bb8ff4feac81 100644
--- a/lldb/test/API/functionalities/thread/exit_during_expression/Makefile
+++ b/lldb/test/API/functionalities/thread/exit_during_expression/Makefile
@@ -1,4 +1,6 @@
 C_SOURCES := main.c
 CFLAGS_EXTRAS := -std=c99
 
+ENABLE_THREADS := YES
+
 include Makefile.rules

diff  --git a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
index 76cdd62a0ff2..bfdfdf53cdb1 100644
--- a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
+++ b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
@@ -14,8 +14,6 @@ class TestExitDuringExpression(TestBase):
 
     NO_DEBUG_INFO_TESTCASE = True
 
-    # The test file doesn't build on Linux: "undefined reference to pthread_create"
-    @skipIfLinux 
     @skipIfWindows
     def test_exit_before_one_thread_unwind(self):
         """Test the case where we exit within the one thread timeout"""


        


More information about the lldb-commits mailing list