[Lldb-commits] [lldb] f2b2414 - [lldb][AArch64] Re-enable clone follow tests on AArch64 Linux

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 8 07:11:04 PDT 2023


Author: David Spickett
Date: 2023-09-08T14:10:08Z
New Revision: f2b241474f21cd549c233f020021d41bb803f18a

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

LOG: [lldb][AArch64] Re-enable clone follow tests on AArch64 Linux

Fixes #49243

By unknown means, these have been fixed since the UNSUPPORTED
was added.

Added: 
    

Modified: 
    lldb/test/Shell/Subprocess/clone-follow-child-softbp.test
    lldb/test/Shell/Subprocess/clone-follow-child-wp.test
    lldb/test/Shell/Subprocess/clone-follow-child.test
    lldb/test/Shell/Subprocess/clone-follow-parent-softbp.test
    lldb/test/Shell/Subprocess/clone-follow-parent-wp.test
    lldb/test/Shell/Subprocess/clone-follow-parent.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/Subprocess/clone-follow-child-softbp.test b/lldb/test/Shell/Subprocess/clone-follow-child-softbp.test
index 4bf13c7710c9486..4a35d6e7cf638b7 100644
--- a/lldb/test/Shell/Subprocess/clone-follow-child-softbp.test
+++ b/lldb/test/Shell/Subprocess/clone-follow-child-softbp.test
@@ -1,6 +1,4 @@
 # REQUIRES: native && system-linux
-# clone() tests fails on arm64 Linux, PR #49899
-# UNSUPPORTED: system-linux && target-aarch64
 # RUN: %clangxx_host %p/Inputs/fork.cpp -DTEST_CLONE -o %t
 # RUN: %lldb -b -s %s %t | FileCheck %s
 settings set target.process.follow-fork-mode child

diff  --git a/lldb/test/Shell/Subprocess/clone-follow-child-wp.test b/lldb/test/Shell/Subprocess/clone-follow-child-wp.test
index 6238d542376107e..55e2ac344e128cc 100644
--- a/lldb/test/Shell/Subprocess/clone-follow-child-wp.test
+++ b/lldb/test/Shell/Subprocess/clone-follow-child-wp.test
@@ -1,6 +1,4 @@
 # REQUIRES: native && system-linux && dbregs-set
-# clone() tests fails on arm64 Linux, PR #49899
-# UNSUPPORTED: system-linux && target-aarch64
 # RUN: %clangxx_host -g %p/Inputs/fork.cpp -DTEST_CLONE -o %t
 # RUN: %lldb -b -s %s %t | FileCheck %s
 settings set target.process.follow-fork-mode child

diff  --git a/lldb/test/Shell/Subprocess/clone-follow-child.test b/lldb/test/Shell/Subprocess/clone-follow-child.test
index dbdb580637cd0e5..42f603d3f1b4c23 100644
--- a/lldb/test/Shell/Subprocess/clone-follow-child.test
+++ b/lldb/test/Shell/Subprocess/clone-follow-child.test
@@ -1,6 +1,4 @@
 # REQUIRES: native && system-linux
-# clone() tests fails on arm64 Linux, PR #49899
-# UNSUPPORTED: system-linux && target-aarch64
 # RUN: %clangxx_host %p/Inputs/fork.cpp -DTEST_CLONE -o %t
 # RUN: %lldb -b -s %s %t | FileCheck %s
 settings set target.process.follow-fork-mode child

diff  --git a/lldb/test/Shell/Subprocess/clone-follow-parent-softbp.test b/lldb/test/Shell/Subprocess/clone-follow-parent-softbp.test
index ddbe231d1d5eda0..3444854e9fe4c21 100644
--- a/lldb/test/Shell/Subprocess/clone-follow-parent-softbp.test
+++ b/lldb/test/Shell/Subprocess/clone-follow-parent-softbp.test
@@ -1,6 +1,4 @@
 # REQUIRES: native && (system-linux || system-netbsd)
-# clone() tests fails on arm64 Linux, PR #49899
-# UNSUPPORTED: system-linux && target-aarch64
 # RUN: %clangxx_host %p/Inputs/fork.cpp -DTEST_CLONE -o %t
 # RUN: %lldb -b -s %s %t | FileCheck %s
 b parent_func

diff  --git a/lldb/test/Shell/Subprocess/clone-follow-parent-wp.test b/lldb/test/Shell/Subprocess/clone-follow-parent-wp.test
index e9ddd807f0f62fd..f4e808bb6389e1e 100644
--- a/lldb/test/Shell/Subprocess/clone-follow-parent-wp.test
+++ b/lldb/test/Shell/Subprocess/clone-follow-parent-wp.test
@@ -1,6 +1,4 @@
 # REQUIRES: native && (system-linux || system-netbsd) && dbregs-set
-# clone() tests fails on arm64 Linux, PR #49899
-# UNSUPPORTED: system-linux && target-aarch64
 # RUN: %clangxx_host -g %p/Inputs/fork.cpp -DTEST_CLONE -o %t
 # RUN: %lldb -b -s %s %t | FileCheck %s
 process launch -s

diff  --git a/lldb/test/Shell/Subprocess/clone-follow-parent.test b/lldb/test/Shell/Subprocess/clone-follow-parent.test
index 2ea3a9cc749d7c5..d11981355b6425b 100644
--- a/lldb/test/Shell/Subprocess/clone-follow-parent.test
+++ b/lldb/test/Shell/Subprocess/clone-follow-parent.test
@@ -1,6 +1,4 @@
 # REQUIRES: native && (system-linux || system-netbsd)
-# clone() tests fails on arm64 Linux, PR #49899
-# UNSUPPORTED: system-linux && target-aarch64
 # RUN: %clangxx_host %p/Inputs/fork.cpp -DTEST_CLONE -o %t
 # RUN: %lldb -b -s %s %t | FileCheck %s
 b parent_func


        


More information about the lldb-commits mailing list