mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
Include some tests for the recently committed ELF section directive
handlers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108938 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
21d35c1399
commit
a7f9563c01
6
test/MC/AsmParser/ELF/dg.exp
Normal file
6
test/MC/AsmParser/ELF/dg.exp
Normal file
@ -0,0 +1,6 @@
|
||||
load_lib llvm.exp
|
||||
|
||||
if { [llvm_supports_target X86] } {
|
||||
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{s}]]
|
||||
}
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_bss.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_bss.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.bss
|
||||
# CHECK: .bss
|
||||
.bss
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_data_rel.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_data_rel.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.data.rel
|
||||
# CHECK: .data.rel
|
||||
.data.rel
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_data_rel_ro.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_data_rel_ro.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.data.rel.ro
|
||||
# CHECK: .data.rel.ro
|
||||
.data.rel.ro
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_eh_frame.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_eh_frame.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.eh_frame
|
||||
# CHECK: .eh_frame
|
||||
.eh_frame
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_rodata.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_rodata.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.rodata
|
||||
# CHECK: .rodata
|
||||
.rodata
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_tbss.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_tbss.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.tbss
|
||||
# CHECK: .tbss
|
||||
.tbss
|
||||
|
6
test/MC/AsmParser/ELF/directive_section_tdata.s
Normal file
6
test/MC/AsmParser/ELF/directive_section_tdata.s
Normal file
@ -0,0 +1,6 @@
|
||||
# RUN: llvm-mc -triple i386-pc-linux-gnu %s | FileCheck %s
|
||||
|
||||
.tdata
|
||||
# CHECK: .tdata
|
||||
.tdata
|
||||
|
Loading…
Reference in New Issue
Block a user