forked from OSchip/llvm-project
18 lines
849 B
Plaintext
18 lines
849 B
Plaintext
; RUN: FileCheck -DVALUE=10 -input-file %s %s
|
|
; RUN: not FileCheck -DVALUE=20 -input-file %s %s 2>&1 | FileCheck %s -check-prefix ERRMSG
|
|
;
|
|
; RUN: not FileCheck -DVALUE=10 -check-prefix NOT -input-file %s %s 2>&1 | FileCheck %s -check-prefix NOT-ERRMSG
|
|
; RUN: FileCheck -DVALUE=20 -check-prefix NOT -input-file %s %s
|
|
|
|
Value = 10
|
|
; CHECK: Value = [[VALUE]]
|
|
; NOT-NOT: Value = [[VALUE]]
|
|
|
|
; ERRMSG: defines.txt:8:10: error: CHECK: expected string not found in input
|
|
; ERRMSG: defines.txt:1:1: note: scanning from here
|
|
; ERRMSG: defines.txt:1:1: note: with variable "VALUE" equal to "20"
|
|
; ERRMSG: defines.txt:7:1: note: possible intended match here
|
|
|
|
; NOT-ERRMSG: defines.txt:9:12: error: {{NOT}}-NOT: excluded string found in input
|
|
; NOT-ERRMSG: defines.txt:7:1: note: found here
|
|
; NOT-ERRMSG: defines.txt:7:1: note: with variable "VALUE" equal to "10" |