[Lldb-commits] [lldb] c55e021 - [LLDB] Skip TestDyldLaunchLinux.py on Arm/Linux

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Sat Sep 11 04:19:55 PDT 2021


Author: Muhammad Omair Javaid
Date: 2021-09-11T16:18:22+05:00
New Revision: c55e021de40a87c0472593601780aa4c2fea2fc4

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

LOG: [LLDB] Skip TestDyldLaunchLinux.py on Arm/Linux

TestDyldLaunchLinux.py has been recently added and is failing on LLDB
Arm/Linux buildbot. I am marking it skip till I come back and look at
it in more detail.

Added: 
    

Modified: 
    lldb/test/API/functionalities/dyld-launch-linux/TestDyldLaunchLinux.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/dyld-launch-linux/TestDyldLaunchLinux.py b/lldb/test/API/functionalities/dyld-launch-linux/TestDyldLaunchLinux.py
index bf475890035a..9abe7f9e5e6b 100644
--- a/lldb/test/API/functionalities/dyld-launch-linux/TestDyldLaunchLinux.py
+++ b/lldb/test/API/functionalities/dyld-launch-linux/TestDyldLaunchLinux.py
@@ -13,6 +13,7 @@ class TestLinux64LaunchingViaDynamicLoader(TestBase):
 
     @skipIf(oslist=no_match(['linux']))
     @no_debug_info_test
+    @skipIf(oslist=["linux"], archs=["arm"])
     def test(self):
         self.build()
 


        


More information about the lldb-commits mailing list