mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
460b0069e3
-v prints all directive pattern matches. -vv additionally prints info that might be noise to users but that can be helpful to FileCheck developers. To maximize code reuse and to make diagnostics more consistent, this patch also adjusts and extends some of the existing diagnostics. CHECK-NOT failures now report variables uses. Many more diagnostics now report the check prefix and kind of directive. Reviewed By: probinson Differential Revision: https://reviews.llvm.org/D47114 llvm-svn: 336967
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" |