[Lldb-commits] [lldb] 0f2eb7e - This test is failing on Linux, skip while I investigate.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Tue May 11 18:14:30 PDT 2021


Author: Jim Ingham
Date: 2021-05-11T18:13:56-07:00
New Revision: 0f2eb7e6e5dc2c1b5d1080160733b3a49e00c99c

URL: https://github.com/llvm/llvm-project/commit/0f2eb7e6e5dc2c1b5d1080160733b3a49e00c99c
DIFF: https://github.com/llvm/llvm-project/commit/0f2eb7e6e5dc2c1b5d1080160733b3a49e00c99c.diff

LOG: This test is failing on Linux, skip while I investigate.

The gdb-remote tests are a bit artificial, depending on
Python threading, and sleeps.  So I'm not 100% surprised it doesn't
work straight up on another XSsystem.

Added: 
    

Modified: 
    lldb/test/API/functionalities/gdb_remote_client/TestHaltFails.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/gdb_remote_client/TestHaltFails.py b/lldb/test/API/functionalities/gdb_remote_client/TestHaltFails.py
index 0732914c8d15..3ee28b0757f9 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestHaltFails.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestHaltFails.py
@@ -49,6 +49,7 @@ def get_to_running(self, sleep_interval, interrupt_timeout = 5):
         self.wait_for_and_check_event(2, lldb.eStateRunning)
         return process
 
+    @skipIfLinux # Failing on Linux, disabling to investigate
     @skipIfReproducer # FIXME: Unexpected packet during (passive) replay
     def test_destroy_while_running(self):
         process = self.get_to_running(10)
@@ -58,6 +59,7 @@ def test_destroy_while_running(self):
         # and make sure we still exit properly.
         self.wait_for_and_check_event(14, lldb.eStateExited)
             
+    @skipIfLinux # Failing on Linux, disabling to investigate
     @skipIfReproducer # FIXME: Unexpected packet during (passive) replay
     def test_async_interrupt(self):
         """
@@ -72,6 +74,7 @@ def test_async_interrupt(self):
         # be in eStateExited:
         self.wait_for_and_check_event(15, lldb.eStateExited)
 
+    @skipIfLinux # Failing on Linux, disabling to investigate
     @skipIfReproducer # FIXME: Unexpected packet during (passive) replay
     def test_interrupt_timeout(self):
         """


        


More information about the lldb-commits mailing list