OSDN Git Service

[LLDB] skip TestCreateDuringInstructionStep on aarch64/linux
authorMuhammad Omair Javaid <omair.javaid@linaro.org>
Mon, 29 Jun 2020 14:29:23 +0000 (19:29 +0500)
committerMuhammad Omair Javaid <omair.javaid@linaro.org>
Mon, 29 Jun 2020 16:32:48 +0000 (21:32 +0500)
TestCreateDuringInstructionStep have started failing again on
aarch64/linux after moving to new machine. I am going mark it skipped
for aarch64/linux.

lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py

index 6e19aa8..92384e1 100644 (file)
@@ -4,7 +4,6 @@ over a thread creation instruction.
 """
 
 
-
 import lldb
 from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
@@ -18,7 +17,7 @@ class CreateDuringInstructionStepTestCase(TestBase):
 
     @skipUnlessPlatform(['linux'])
     @expectedFailureAndroid('llvm.org/pr24737', archs=['arm'])
-    @skipIf(oslist=["linux"], archs=["arm"], bugnumber="llvm.org/pr24737")
+    @skipIf(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr24737")
     def test_step_inst(self):
         self.build(dictionary=self.getBuildFlags())
         exe = self.getBuildArtifact("a.out")