brintos

brintos / llvm-project-archived public Read only

0
0
Text · 351 B · a29b93e Raw
14 lines · plain
1## Test the creation warning and supression of that warning.2 3RUN: touch %t1.txt4RUN: touch %t2.txt5 6RUN: rm -f %t.warning.ar7RUN: llvm-ar r %t.warning.ar %t1.txt %t2.txt 2>&1 \8RUN:   | FileCheck %s -DOUTPUT=%t.warning.ar9 10CHECK: warning: creating [[OUTPUT]]11 12RUN: rm -f %t.supressed.ar13RUN: llvm-ar cr %t.supressed.ar %t1.txt %t2.txt 2>&1 | count 014