[Lldb-commits] [lldb] d506a9e - [lldb] Require native for command-thread-siginfo.test
Ayush Sahay via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 14 08:50:39 PDT 2022
Author: Ayush Sahay
Date: 2022-03-14T21:20:21+05:30
New Revision: d506a9ef2b3216879bec182be67590eddac27685
URL: https://github.com/llvm/llvm-project/commit/d506a9ef2b3216879bec182be67590eddac27685
DIFF: https://github.com/llvm/llvm-project/commit/d506a9ef2b3216879bec182be67590eddac27685.diff
LOG: [lldb] Require native for command-thread-siginfo.test
command-thread-siginfo.test employs a subject with a call to wait, and
thus requires system-linux. However, it's possible to target non-Linux
platforms despite operating on Linux hosts. So, have it require native
too.
Reviewed By: mgorny, labath
Differential Revision: https://reviews.llvm.org/D121487
Added:
Modified:
lldb/test/Shell/Commands/command-thread-siginfo.test
Removed:
################################################################################
diff --git a/lldb/test/Shell/Commands/command-thread-siginfo.test b/lldb/test/Shell/Commands/command-thread-siginfo.test
index 92829f3dcb0c4..1f2beee90e440 100644
--- a/lldb/test/Shell/Commands/command-thread-siginfo.test
+++ b/lldb/test/Shell/Commands/command-thread-siginfo.test
@@ -1,4 +1,4 @@
-# REQUIRES: system-linux
+# REQUIRES: native && system-linux
# RUN: %clang_host -g %S/Inputs/sigchld.c -o %t
# RUN: %lldb %t -b -s %s | FileCheck %s
More information about the lldb-commits
mailing list