mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8fb00b74f1
On z/OS, the following error message is not matched correctly in lit tests. ``` EDC5129I No such file or directory. ``` This patch uses a lit config substitution to check for platform specific error messages. Reviewed By: muiez, jhenderson Differential Revision: https://reviews.llvm.org/D95246
102 lines
2.6 KiB
Plaintext
102 lines
2.6 KiB
Plaintext
## Test quick append
|
|
|
|
# RUN: rm -rf %t && mkdir -p %t
|
|
# RUN: yaml2obj %s -o %t/1.o --docnum=1
|
|
# RUN: yaml2obj %s -o %t/2.o --docnum=2
|
|
|
|
## Append single member:
|
|
# RUN: llvm-ar qc %t/single.a %t/1.o
|
|
# RUN: llvm-ar t %t/single.a \
|
|
# RUN: | FileCheck %s --check-prefix=SINGLE --match-full-lines --implicit-check-not {{.}}
|
|
|
|
# SINGLE: 1.o{{$}}
|
|
|
|
# RUN: llvm-nm --print-armap %t/single.a \
|
|
# RUN: | FileCheck %s --check-prefix=SINGLE-SYM
|
|
|
|
# SINGLE-SYM: symbol1
|
|
|
|
## Append multiple members:
|
|
# RUN: llvm-ar qc %t/multiple.a %t/1.o %t/2.o
|
|
# RUN: llvm-ar t %t/multiple.a \
|
|
# RUN: | FileCheck %s --check-prefix=MULTIPLE --match-full-lines --implicit-check-not {{.}}
|
|
|
|
# MULTIPLE: 1.o{{$}}
|
|
# MULTIPLE-NEXT: 2.o{{$}}
|
|
|
|
# RUN: llvm-nm --print-armap %t/multiple.a \
|
|
# RUN: | FileCheck %s --check-prefix=MULTIPLE-SYM
|
|
|
|
# MULTIPLE-SYM: symbol1 in 1.o
|
|
# MULTIPLE-SYM-NEXT: symbol2 in 2.o
|
|
|
|
## Append same member:
|
|
# RUN: llvm-ar qc %t/same.a %t/1.o %t/1.o
|
|
# RUN: llvm-ar t %t/same.a \
|
|
# RUN: | FileCheck %s --check-prefix=SAME -DFILE=%t/2.o --match-full-lines --implicit-check-not {{.}}
|
|
|
|
# SAME: 1.o{{$}}
|
|
# SAME-NEXT: 1.o{{$}}
|
|
|
|
# RUN: llvm-nm --print-armap %t/same.a \
|
|
# RUN: | FileCheck %s --check-prefix=SAME-SYM
|
|
|
|
# SAME-SYM: symbol1 in 1.o
|
|
# SAME-SYM-NEXT: symbol1 in 1.o
|
|
|
|
## Append without member:
|
|
# RUN: llvm-ar qc %t/without.a
|
|
# RUN: llvm-ar t %t/without.a | count 0
|
|
|
|
# RUN: llvm-nm --print-armap %t/without.a | count 0
|
|
|
|
## No archive:
|
|
# RUN: not llvm-ar qc 2>&1 \
|
|
# RUN: | FileCheck %s --check-prefix=NO-ARCHIVE
|
|
|
|
# NO-ARCHIVE: error: an archive name must be specified
|
|
|
|
## Member does not exist:
|
|
# RUN: not llvm-ar qc %t/missing.a %t/missing.txt 2>&1 \
|
|
# RUN: | FileCheck %s --check-prefix=MISSING-FILE -DFILE=%t/missing.txt -DMSG=%errc_ENOENT
|
|
|
|
# MISSING-FILE: error: [[FILE]]: [[MSG]]
|
|
|
|
## Create and append members to a thin archive:
|
|
# RUN: llvm-ar qcT %t/thin-multiple.a %t/1.o
|
|
# RUN: llvm-ar qcT %t/thin-multiple.a %t/2.o
|
|
# RUN: llvm-ar t %t/thin-multiple.a \
|
|
# RUN: | FileCheck %s --check-prefix=MULTIPLE
|
|
|
|
# RUN: llvm-ar qcT %t/thin-same.a %t/1.o %t/1.o
|
|
# RUN: llvm-ar t %t/thin-same.a \
|
|
# RUN: | FileCheck %s --check-prefix=SAME
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .text
|
|
Type: SHT_PROGBITS
|
|
Symbols:
|
|
- Name: symbol1
|
|
Binding: STB_GLOBAL
|
|
Section: .text
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .text
|
|
Type: SHT_PROGBITS
|
|
Symbols:
|
|
- Name: symbol2
|
|
Binding: STB_GLOBAL
|
|
Section: .text
|