Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-objcopy / ELF / invalid-preserve-dates.test
blob5b3e2e7a5c5ee6eac75b14426fd433329f75bd54
1 ## This tests for an expected error when --preserve-dates is
2 ## specified at the same time as using stdin or stdout as input or
3 ## output files.
5 # RUN: yaml2obj %s -o %t.foo
7 --- !ELF
8 FileHeader:
9   Class:   ELFCLASS64
10   Data:    ELFDATA2LSB
11   Type:    ET_DYN
12   Machine: EM_X86_64
13 ...
15 # RUN: not llvm-objcopy --preserve-dates - %t 2>&1 | FileCheck %s
16 # RUN: not llvm-objcopy --preserve-dates %t.foo - 2>&1 | FileCheck %s
18 ## Test that llvm-strip reports a proper error when --preserve-dates is specified
19 ## with one or more inputs, where one of them is stdin.
20 # RUN: not llvm-strip --preserve-dates - < %t.foo 2>&1 | FileCheck %s
21 # RUN: not llvm-strip --preserve-dates %t.foo - < %t.foo 2>&1 | FileCheck %s
22 # RUN: not llvm-strip --preserve-dates - %t.foo < %t.foo 2>&1 | FileCheck %s
23 # RUN: not llvm-strip --preserve-dates %t.foo - %t.foo < %t.foo 2>&1 | FileCheck %s
25 ## Testing -o.
26 # RUN: not llvm-strip --preserve-dates - -o %t.foo < %t.foo 2>&1 | FileCheck %s
27 # RUN: not llvm-strip --preserve-dates %t.foo -o - < %t.foo 2>&1 | FileCheck %s
29 # CHECK: error: --preserve-dates requires a file