Mercurial > hg > CbC > CbC_llvm
comparison test/FileCheck/envvar-opts.txt @ 147:c2174574ed3a
LLVM 10
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 14 Aug 2019 16:55:33 +0900 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
134:3a76565eade5 | 147:c2174574ed3a |
---|---|
1 ; Create a case that produces a simple diagnostic. | |
2 ; RUN: echo foo > %t.in | |
3 ; CHECK: foo | |
4 ; CHECK: bar | |
5 | |
6 ; RUN: env FILECHECK_OPTS= \ | |
7 ; RUN: not FileCheck %s -input-file %t.in 2>&1 \ | |
8 ; RUN: | FileCheck -check-prefix QUIET %s | |
9 | |
10 ; RUN: env FILECHECK_OPTS=-v \ | |
11 ; RUN: not FileCheck %s -input-file %t.in 2>&1 \ | |
12 ; RUN: | FileCheck -check-prefix VERB %s | |
13 | |
14 ; QUIET-NOT: remark: {{CHECK}}: expected string found in input | |
15 ; VERB: remark: {{CHECK}}: expected string found in input |