Skip to content

Commit 7bc1bae

Browse files
committed
[MCParser][z/OS] Mark a few tests as unsupported for the z/OS Target
- Background here is that that these sets of tests are "invalid" to be run on z/OS - The reason is because these test constructs that HLASM never supports (HLASM doesn't support GNU style directives) - Usually tests are geared towards a particular target via the use of a triple that targets just that platform, but these tests require the use of a "default triple" - Thus, we mark these tests as "UNSUPPORTED" for z/OS since we don't want to run these for z/OS Reviewed By: yusra.syeda, abhina.sreeskantharajan Differential Revision: https://reviews.llvm.org/D105204
1 parent 0bb9c05 commit 7bc1bae

File tree

7 files changed

+7
-0
lines changed

7 files changed

+7
-0
lines changed

llvm/test/MC/AsmParser/debug-empty-source.s

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// UNSUPPORTED: -zos
12
// REQUIRES: default_triple
23
// RUN: llvm-mc %s -o -| FileCheck %s
34

llvm/test/MC/AsmParser/debug-no-source.s

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// UNSUPPORTED: -zos
12
// REQUIRES: default_triple
23
// RUN: llvm-mc %s | FileCheck %s
34

llvm/test/MC/AsmParser/include.ll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
; RUN: llc -I %p/Inputs -filetype asm -o - %s | FileCheck %s
2+
; UNSUPPORTED: -zos
23
; REQUIRES: default_triple
34

45
module asm ".include \22module.x\22"

llvm/test/MC/AsmParser/macro-same-context.ll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
;; Test that macros in inline assembly blocks share the same context,
22
;; thus a definition is available to the whole file. PR36110
3+
; UNSUPPORTED: -zos
34
; RUN: not llc < %s 2>&1 | FileCheck %s
45
; REQUIRES: default_triple
56
;; This test is expected to fail on AIX,

llvm/test/MC/ELF/dwarf-file0.s

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# UNSUPPORTED: -zos
12
# REQUIRES: default_triple
23
# RUN: llvm-mc -dwarf-version 4 %s -filetype=obj -o - | llvm-dwarfdump -debug-line - | FileCheck %s
34
# RUN: llvm-mc -dwarf-version 4 %s --fatal-warnings -o - | FileCheck %s --check-prefix=ASM

llvm/test/MC/ELF/dwarf-loc0.s

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# UNSUPPORTED: -zos
12
# REQUIRES: default_triple
23
# RUN: llvm-mc -dwarf-version 5 --defsym FILE0=1 %s -filetype=obj -o - | llvm-dwarfdump -debug-line - | FileCheck %s
34
# RUN: not llvm-mc -dwarf-version 4 %s -filetype=asm -o - 2>&1 | FileCheck %s -check-prefix=ERR

llvm/test/tools/llvm-mc/no_warnings.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# UNSUPPORTED: -zos
12
# RUN: llvm-mc --no-warn %s 2>&1 | FileCheck %s
23

34
# CHECK-NOT: warning:

0 commit comments

Comments
 (0)