[Lldb-commits] [lldb] 1583766 - This very simple .c file is failing on the Debian bot wit the error

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


Author: Jim Ingham
Date: 2020-05-21T18:26:01-07:00
New Revision: 1583766ed23b707898e872728783f054ede47ca8

URL: https://github.com/llvm/llvm-project/commit/1583766ed23b707898e872728783f054ede47ca8
DIFF: https://github.com/llvm/llvm-project/commit/1583766ed23b707898e872728783f054ede47ca8.diff

LOG: This very simple .c file is failing on the Debian bot wit the error

undefined reference to pthread_create

I skipped the test till I can figure out why this didn't build.

Added: 
    

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

Removed: 
    


################################################################################
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 bfdfdf53cdb1..76cdd62a0ff2 100644
--- a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
+++ b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
@@ -14,6 +14,8 @@ 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