[Lldb-commits] [lldb] e179e72 - Remove XFAIL arm-linux decorator from passing tests

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Sun May 10 19:32:57 PDT 2020


Author: Muhammad Omair Javaid
Date: 2020-05-11T07:31:18+05:00
New Revision: e179e7234ffedc7552e2729e76860cfab0dc103e

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

LOG: Remove XFAIL arm-linux decorator from passing tests

Added: 
    

Modified: 
    lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py
    lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py
    lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
    lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py b/lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py
index dd1308ba58f0..033f5bc5fa1d 100644
--- a/lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py
+++ b/lldb/test/API/commands/expression/ir-interpreter/TestIRInterpreter.py
@@ -45,10 +45,6 @@ def build_and_run(self):
         oslist=['windows'],
         bugnumber="http://llvm.org/pr21765")
     @expectedFailureNetBSD
-    @expectedFailureAll(
-        oslist=['linux'],
-        archs=['arm'],
-        bugnumber="llvm.org/pr27868")
     def test_ir_interpreter(self):
         self.build_and_run()
 

diff  --git a/lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py b/lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py
index added4ef508a..2a9ec4f7617a 100644
--- a/lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py
+++ b/lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py
@@ -23,7 +23,7 @@ def setUp(self):
 
     # gcc generates incorrect linetable
     @expectedFailureAll(archs="arm", compiler="gcc", triple=".*-android")
-    @expectedFailureAll(archs=['arm', 'aarch64'])
+    @expectedFailureAll(archs=['aarch64'])
     @skipIfWindows
     def test_with_run_command(self):
         """Test that LLDB handles a function with __builtin_trap correctly."""

diff  --git a/lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py b/lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
index c4d6461ddde7..807f1ae9a2ac 100644
--- a/lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
+++ b/lldb/test/API/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
@@ -18,10 +18,6 @@ class CreateDuringInstructionStepTestCase(TestBase):
 
     @skipUnlessPlatform(['linux'])
     @expectedFailureAndroid('llvm.org/pr24737', archs=['arm'])
-    @expectedFailureAll(
-        oslist=["linux"],
-        archs=["arm"],
-        bugnumber="llvm.org/pr24737")
     def test_step_inst(self):
         self.build(dictionary=self.getBuildFlags())
         exe = self.getBuildArtifact("a.out")

diff  --git a/lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py b/lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py
index c6c750299b1c..84c241979083 100644
--- a/lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py
+++ b/lldb/test/API/tools/lldb-server/TestGdbRemoteSingleStep.py
@@ -21,15 +21,6 @@ def test_single_step_only_steps_one_instruction_with_s_debugserver(self):
 
     @skipIfWindows # No pty support to test any inferior std -i/e/o
     @llgs_test
-    @expectedFailureAndroid(
-        bugnumber="llvm.org/pr24739",
-        archs=[
-            "arm",
-            "aarch64"])
-    @expectedFailureAll(
-        oslist=["linux"],
-        archs=["arm"],
-        bugnumber="llvm.org/pr24739")
     @skipIf(triple='^mips')
     def test_single_step_only_steps_one_instruction_with_s_llgs(self):
         self.init_llgs_test()


        


More information about the lldb-commits mailing list