Skip to content

Commit 25f4608

Browse files
author
Michał Górny
committed
[lldb] [test] XFAIL llgs tests failing on arm
Sponsored by: The FreeBSD Foundation
1 parent 0aa6df6 commit 25f4608

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,62 +317,72 @@ def resume_one_test(self, run_order, use_vCont=False):
317317
], True)
318318
self.expect_gdbremote_sequence()
319319

320+
@expectedFailureAll(archs=["arm"]) # TODO
320321
@expectedFailureAll(archs=["aarch64"],
321322
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
322323
@add_test_categories(["fork"])
323324
def test_c_parent(self):
324325
self.resume_one_test(run_order=["parent", "parent"])
325326

327+
@expectedFailureAll(archs=["arm"]) # TODO
326328
@expectedFailureAll(archs=["aarch64"],
327329
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
328330
@add_test_categories(["fork"])
329331
def test_c_child(self):
330332
self.resume_one_test(run_order=["child", "child"])
331333

334+
@expectedFailureAll(archs=["arm"]) # TODO
332335
@expectedFailureAll(archs=["aarch64"],
333336
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
334337
@add_test_categories(["fork"])
335338
def test_c_parent_then_child(self):
336339
self.resume_one_test(run_order=["parent", "parent", "child", "child"])
337340

341+
@expectedFailureAll(archs=["arm"]) # TODO
338342
@expectedFailureAll(archs=["aarch64"],
339343
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
340344
@add_test_categories(["fork"])
341345
def test_c_child_then_parent(self):
342346
self.resume_one_test(run_order=["child", "child", "parent", "parent"])
343347

348+
@expectedFailureAll(archs=["arm"]) # TODO
344349
@expectedFailureAll(archs=["aarch64"],
345350
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
346351
@add_test_categories(["fork"])
347352
def test_c_interspersed(self):
348353
self.resume_one_test(run_order=["parent", "child", "parent", "child"])
349354

355+
@expectedFailureAll(archs=["arm"]) # TODO
350356
@expectedFailureAll(archs=["aarch64"],
351357
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
352358
@add_test_categories(["fork"])
353359
def test_vCont_parent(self):
354360
self.resume_one_test(run_order=["parent", "parent"], use_vCont=True)
355361

362+
@expectedFailureAll(archs=["arm"]) # TODO
356363
@expectedFailureAll(archs=["aarch64"],
357364
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
358365
@add_test_categories(["fork"])
359366
def test_vCont_child(self):
360367
self.resume_one_test(run_order=["child", "child"], use_vCont=True)
361368

369+
@expectedFailureAll(archs=["arm"]) # TODO
362370
@expectedFailureAll(archs=["aarch64"],
363371
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
364372
@add_test_categories(["fork"])
365373
def test_vCont_parent_then_child(self):
366374
self.resume_one_test(run_order=["parent", "parent", "child", "child"],
367375
use_vCont=True)
368376

377+
@expectedFailureAll(archs=["arm"]) # TODO
369378
@expectedFailureAll(archs=["aarch64"],
370379
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
371380
@add_test_categories(["fork"])
372381
def test_vCont_child_then_parent(self):
373382
self.resume_one_test(run_order=["child", "child", "parent", "parent"],
374383
use_vCont=True)
375384

385+
@expectedFailureAll(archs=["arm"]) # TODO
376386
@expectedFailureAll(archs=["aarch64"],
377387
bugnumber="https://github.com/llvm/llvm-project/issues/56268")
378388
@add_test_categories(["fork"])
@@ -415,6 +425,7 @@ def test_vCont_all_processes_implicit(self):
415425
], True)
416426
self.expect_gdbremote_sequence()
417427

428+
@expectedFailureAll(archs=["arm"]) # TODO
418429
@add_test_categories(["fork"])
419430
def test_threadinfo(self):
420431
parent_pid, parent_tid, child_pid, child_tid = (
@@ -460,6 +471,7 @@ def test_threadinfo(self):
460471
], True)
461472
self.expect_gdbremote_sequence()
462473

474+
@expectedFailureAll(archs=["arm"]) # TODO
463475
@add_test_categories(["fork"])
464476
def test_memory_read_write(self):
465477
self.build()
@@ -547,6 +559,7 @@ def test_memory_read_write(self):
547559
self.assertEqual(data, name + "\0")
548560
self.reset_test_sequence()
549561

562+
@expectedFailureAll(archs=["arm"]) # TODO
550563
@add_test_categories(["fork"])
551564
def test_register_read_write(self):
552565
parent_pid, parent_tid, child_pid, child_tid = (
@@ -643,6 +656,7 @@ def test_register_read_write(self):
643656
self.assertIsNotNone(data)
644657
self.assertEqual(data, old_val[1])
645658

659+
@expectedFailureAll(archs=["arm"]) # TODO
646660
@add_test_categories(["fork"])
647661
def test_qC(self):
648662
parent_pid, parent_tid, child_pid, child_tid = (
@@ -677,6 +691,7 @@ def test_qC(self):
677691
], True)
678692
self.expect_gdbremote_sequence()
679693

694+
@expectedFailureAll(archs=["arm"]) # TODO
680695
@add_test_categories(["fork"])
681696
def test_T(self):
682697
parent_pid, parent_tid, child_pid, child_tid = (

0 commit comments

Comments
 (0)