[ARM] MVE big endian bitcasts
[llvm-complete.git] / test / tools / llvm-objcopy / ELF / same-file-strip.test
blob304ecaf0e1fad26199d7826f4e5afebf056bf9f5
1 ## Test llvm-strip using the same input file more than once.
2 ## When using stdin ('-') more than once llvm-strip should give an error
3 ## while a file more than once should be simply a warning.
5 # RUN: yaml2obj %s -o %t
7 # RUN: not llvm-strip - - < %t 2>&1 | FileCheck -check-prefix=ERR %s
8 # RUN: not llvm-strip - %t - < %t 2>&1 | FileCheck -check-prefix=ERR %s
10 # ERR: error: cannot specify '-' as an input file more than once
12 # RUN: llvm-strip %t %t 2>&1 | FileCheck -check-prefix=WARN %s -DFILE=%t
13 # RUN: llvm-strip %t %t %t 2>&1 | FileCheck -check-prefix=WARN %s -DFILE=%t
15 # WARN: warning: '[[FILE]]' was already specified
17 --- !ELF
18 FileHeader:
19   Class:   ELFCLASS64
20   Data:    ELFDATA2LSB
21   Type:    ET_REL
22   Machine: EM_X86_64
23 Sections:
24   - Name:  .alloc
25     Type:  SHT_PROGBITS
26     Flags: [ SHF_ALLOC ]