mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-25 12:49:50 +00:00
test: use separate input file for test
Rather than using sed to generate the input and pipe the result to strings, use the static input instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287079 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
925ac794ff
commit
68e337a67b
4
test/tools/llvm-strings/Inputs/variable-length
Normal file
4
test/tools/llvm-strings/Inputs/variable-length
Normal file
@ -0,0 +1,4 @@
|
||||
a
|
||||
ab
|
||||
abc
|
||||
abcd
|
@ -1,7 +1,7 @@
|
||||
RUN: sed -n 's/^STDIN: //p' %s | llvm-strings | FileCheck --check-prefix CHECK-DEFAULT %s
|
||||
RUN: sed -n 's/^STDIN: //p' %s | not llvm-strings -n 0 2>&1 | FileCheck --check-prefix CHECK-0 %s
|
||||
RUN: sed -n 's/^STDIN: //p' %s | llvm-strings -n 1 | FileCheck --check-prefix CHECK-1 %s
|
||||
RUN: sed -n 's/^STDIN: //p' %s | llvm-strings -n 2 | FileCheck --check-prefix CHECK-2 %s
|
||||
RUN: not llvm-strings -n 0 2>&1 %S/Inputs/variable-length | FileCheck --check-prefix CHECK-0 %s
|
||||
RUN: llvm-strings -n 1 %S/Inputs/variable-length | FileCheck --check-prefix CHECK-1 %s
|
||||
RUN: llvm-strings -n 2 %S/Inputs/variable-length | FileCheck --check-prefix CHECK-2 %s
|
||||
RUN: llvm-strings %S/Inputs/variable-length | FileCheck --check-prefix CHECK-DEFAULT %s
|
||||
|
||||
STDIN: a
|
||||
STDIN: ab
|
||||
|
Loading…
Reference in New Issue
Block a user