brintos

brintos / llvm-project-archived public Read only

0
0
Text · 467 B · 8eeeebf Raw
14 lines · plain
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 are3## updated for the second file.4 5RUN: echo abcd > %t16RUN: echo 1234 >> %t17RUN: echo defg > %t28RUN: llvm-strings --print-file-name --radix=d %t1 %t2 \9RUN:   | FileCheck %s -DFILE1=%t1 -DFILE2=%t2 --implicit-check-not={{.}}10 11CHECK:      [[FILE1]]: 0 abcd12CHECK-NEXT: [[FILE1]]: 5 123413CHECK-NEXT: [[FILE2]]: 0 defg14