Follow up to d0858bffa11, add missing REQUIRES x86
[llvm-project.git] / llvm / test / tools / llvm-strings / multiple-inputs.test
blob8eeeebfc4898e0fbc3862c04a04f22ffbb1b8650
1 ## Show that llvm-strings reads every file specified on the command-line.
2 ## This test uses --print-file-name and --radix to show that the values are
3 ## updated for the second file.
5 RUN: echo abcd > %t1
6 RUN: echo 1234 >> %t1
7 RUN: echo defg > %t2
8 RUN: llvm-strings --print-file-name --radix=d %t1 %t2 \
9 RUN:   | FileCheck %s -DFILE1=%t1 -DFILE2=%t2 --implicit-check-not={{.}}
11 CHECK:      [[FILE1]]: 0 abcd
12 CHECK-NEXT: [[FILE1]]: 5 1234
13 CHECK-NEXT: [[FILE2]]: 0 defg