mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01: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. llvm-svn: 287079
This commit is contained in:
parent
2cfadc98ed
commit
c0da5c488c
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