[PATCH] D113870: Fix missing REQURIES for Tests in D108261
Kyungwoo Lee via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 14 20:56:07 PST 2021
kyulee created this revision.
kyulee requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
It appears REQUIRES are needed for tests added in D108261 <https://reviews.llvm.org/D108261>.
This was not caught in the pre-merge tests but in the post-commit tests.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D113870
Files:
llvm/test/DebugInfo/debugline-endsequence.ll
llvm/test/DebugInfo/debugline-endsequence.s
Index: llvm/test/DebugInfo/debugline-endsequence.s
===================================================================
--- llvm/test/DebugInfo/debugline-endsequence.s
+++ llvm/test/DebugInfo/debugline-endsequence.s
@@ -1,5 +1,7 @@
# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o - | llvm-dwarfdump --debug-line - | FileCheck %s
+# REQUIRES: x86-registered-target
+
# The line table is open in the MC path.
# The end sequence is emitted using the section end label.
Index: llvm/test/DebugInfo/debugline-endsequence.ll
===================================================================
--- llvm/test/DebugInfo/debugline-endsequence.ll
+++ llvm/test/DebugInfo/debugline-endsequence.ll
@@ -1,5 +1,7 @@
; RUN: llc %s -filetype=obj -o - | llvm-dwarfdump --debug-line - | FileCheck %s
+; REQUIRES: aarch64-registered-target
+
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
target triple = "arm64-apple-macosx12.0.0"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113870.387153.patch
Type: text/x-patch
Size: 935 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211115/3beb924c/attachment-0001.bin>
More information about the llvm-commits
mailing list