Skip to content

Commit 713877e

Browse files
committed
Add triple setting to llvm-mc args to make sure that tests are running for the specific X86 arch
1 parent 417c31b commit 713877e

12 files changed

+12
-12
lines changed

llvm/test/DWARFCFIChecker/X86/cfa-corner-cases.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: not llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: not llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s --allow-empty
33
.text
44
.globl f

llvm/test/DWARFCFIChecker/X86/cfi-escape.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33
.text
44
.globl f

llvm/test/DWARFCFIChecker/X86/empty-nested-frames.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s --allow-empty
33
# CHECK-NOT: warning:
44

llvm/test/DWARFCFIChecker/X86/empty-section.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s --allow-empty
33
# CHECK-NOT: warning:
44
.text

llvm/test/DWARFCFIChecker/X86/multiple-sections.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: not llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: not llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33
.text
44
.globl f

llvm/test/DWARFCFIChecker/X86/nested-frames.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: not llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: not llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33

44
.pushsection A

llvm/test/DWARFCFIChecker/X86/single-func-cfa-mistake.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33
.text
44
.globl f

llvm/test/DWARFCFIChecker/X86/single-func-missed-cfi-directive.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: not llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: not llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33
.text
44
.globl f

llvm/test/DWARFCFIChecker/X86/single-func.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33
.text
44
.globl f

llvm/test/DWARFCFIChecker/X86/spill-two-reg-reversed.s

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RUN: not llvm-mc %s --validate-cfi --filetype=null 2>&1 \
1+
# RUN: not llvm-mc -triple x86_64-pc-linux-gnu %s --validate-cfi --filetype=null 2>&1 \
22
# RUN: | FileCheck %s
33
.text
44
.type _start,@function

0 commit comments

Comments
 (0)