From 38135b2a7fff008093c0ca020855373f33ec9b12 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Thu, 25 Jun 2020 16:22:52 -0700 Subject: [PATCH] [test] XFail TestSigtrampUnwind based on arch rather than OS --- .../API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py b/lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py index bf19cacac06d..3ee86f786133 100644 --- a/lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py +++ b/lldb/test/API/functionalities/unwind/sigtramp/TestSigtrampUnwind.py @@ -17,7 +17,7 @@ class SigtrampUnwind(TestBase): # On different platforms the "_sigtramp" and "__kill" frames are likely to be different. # This test could probably be adapted to run on linux/*bsd easily enough. @skipUnlessDarwin - @expectedFailureAll(oslist=["ios", "watchos", "tvos", "bridgeos"], bugnumber="") # lldb skips 1 frame on arm64 above _sigtramp + @expectedFailureAll(archs=["arm64"], bugnumber="") # lldb skips 1 frame on arm64 above _sigtramp def test(self): """Test that we can backtrace correctly with _sigtramp on the stack""" self.build()