[lldb] [test] Un-XFAIL fork tests on arm as well
authorMichał Górny <mgorny@moritz.systems>
Wed, 29 Jun 2022 14:04:50 +0000 (16:04 +0200)
committerMichał Górny <mgorny@moritz.systems>
Wed, 29 Jun 2022 14:05:12 +0000 (16:05 +0200)
Sponsored by: The FreeBSD Foundation

lldb/test/API/tools/lldb-server/TestGdbRemoteFork.py
lldb/test/API/tools/lldb-server/TestGdbRemoteForkNonStop.py

index fa5b116..3b03380 100644 (file)
@@ -153,54 +153,44 @@ class TestGdbRemoteFork(GdbRemoteForkTestBase):
     def test_vkill_both(self):
         self.vkill_test(kill_parent=True, kill_child=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_c_parent(self):
         self.resume_one_test(run_order=["parent", "parent"])
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_c_child(self):
         self.resume_one_test(run_order=["child", "child"])
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_c_parent_then_child(self):
         self.resume_one_test(run_order=["parent", "parent", "child", "child"])
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_c_child_then_parent(self):
         self.resume_one_test(run_order=["child", "child", "parent", "parent"])
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_c_interspersed(self):
         self.resume_one_test(run_order=["parent", "child", "parent", "child"])
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_vCont_parent(self):
         self.resume_one_test(run_order=["parent", "parent"], use_vCont=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_vCont_child(self):
         self.resume_one_test(run_order=["child", "child"], use_vCont=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_vCont_parent_then_child(self):
         self.resume_one_test(run_order=["parent", "parent", "child", "child"],
                              use_vCont=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_vCont_child_then_parent(self):
         self.resume_one_test(run_order=["child", "child", "parent", "parent"],
                              use_vCont=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_vCont_interspersed(self):
         self.resume_one_test(run_order=["parent", "child", "parent", "child"],
@@ -241,7 +231,6 @@ class TestGdbRemoteFork(GdbRemoteForkTestBase):
         ], True)
         self.expect_gdbremote_sequence()
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_threadinfo(self):
         parent_pid, parent_tid, child_pid, child_tid = (
@@ -287,7 +276,6 @@ class TestGdbRemoteFork(GdbRemoteForkTestBase):
                  ], True)
         self.expect_gdbremote_sequence()
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_memory_read_write(self):
         self.build()
@@ -375,7 +363,6 @@ class TestGdbRemoteFork(GdbRemoteForkTestBase):
             self.assertEqual(data, name + "\0")
             self.reset_test_sequence()
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_register_read_write(self):
         parent_pid, parent_tid, child_pid, child_tid = (
@@ -472,7 +459,6 @@ class TestGdbRemoteFork(GdbRemoteForkTestBase):
             self.assertIsNotNone(data)
             self.assertEqual(data, old_val[1])
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_qC(self):
         parent_pid, parent_tid, child_pid, child_tid = (
@@ -507,7 +493,6 @@ class TestGdbRemoteFork(GdbRemoteForkTestBase):
                  ], True)
         self.expect_gdbremote_sequence()
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_T(self):
         parent_pid, parent_tid, child_pid, child_tid = (
index 38f6959..5b1a354 100644 (file)
@@ -98,13 +98,11 @@ class TestGdbRemoteForkNonStop(GdbRemoteForkTestBase):
     def test_vkill_both_nonstop(self):
         self.vkill_test(kill_parent=True, kill_child=True, nonstop=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_c_interspersed_nonstop(self):
         self.resume_one_test(run_order=["parent", "child", "parent", "child"],
                              nonstop=True)
 
-    @expectedFailureAll(archs=["arm"])  # TODO
     @add_test_categories(["fork"])
     def test_vCont_interspersed_nonstop(self):
         self.resume_one_test(run_order=["parent", "child", "parent", "child"],