brintos

brintos / llvm-project-archived public Read only

0
0
Text · 387 B · 72bd2ab Raw
11 lines · plain
1## --version skips input file processing.2# RUN: ld.lld --version %t/not-exist 2>&1 | FileCheck %s3 4## -v/-V don't skip processing if there is any input.5# RUN: ld.lld -v 2>&1 | FileCheck %s6# RUN: not ld.lld -v %t/not-exist 2>&1 | FileCheck %s7# RUN: ld.lld -V 2>&1 | FileCheck %s8# RUN: not ld.lld -V %t/not-exist 2>&1 | FileCheck %s9 10# CHECK: LLD {{.+}} (compatible with GNU linkers)11