blob: c788124dcbbad92de5d9ed364a4f6edd83e63458 [file] [log] [blame]
Alexander Richardson46e1fd62017-11-07 13:24:44 +00001; RUN: FileCheck -DVALUE=10 -input-file %s %s
2; RUN: not FileCheck -DVALUE=20 -input-file %s %s 2>&1 | FileCheck %s -check-prefix ERRMSG
Joel E. Dennydc5ba312018-07-13 03:08:23 +00003;
4; RUN: not FileCheck -DVALUE=10 -check-prefix NOT -input-file %s %s 2>&1 | FileCheck %s -check-prefix NOT-ERRMSG
5; RUN: FileCheck -DVALUE=20 -check-prefix NOT -input-file %s %s
Alexander Richardson46e1fd62017-11-07 13:24:44 +00006
7Value = 10
8; CHECK: Value = [[VALUE]]
Joel E. Dennydc5ba312018-07-13 03:08:23 +00009; NOT-NOT: Value = [[VALUE]]
Alexander Richardson46e1fd62017-11-07 13:24:44 +000010
Thomas Preud'homme447abc52019-01-27 09:02:19 +000011; ERRMSG: defines.txt:8:10: error: CHECK: expected string not found in input
Joel E. Dennydc5ba312018-07-13 03:08:23 +000012; ERRMSG: defines.txt:1:1: note: scanning from here
Alexander Richardson46e1fd62017-11-07 13:24:44 +000013; ERRMSG: defines.txt:1:1: note: with variable "VALUE" equal to "20"
Thomas Preud'homme447abc52019-01-27 09:02:19 +000014; ERRMSG: defines.txt:7:1: note: possible intended match here
Joel E. Dennydc5ba312018-07-13 03:08:23 +000015
Thomas Preud'homme447abc52019-01-27 09:02:19 +000016; NOT-ERRMSG: defines.txt:9:12: error: {{NOT}}-NOT: excluded string found in input
17; NOT-ERRMSG: defines.txt:7:1: note: found here
18; NOT-ERRMSG: defines.txt:7:1: note: with variable "VALUE" equal to "10"