Alexander Richardson | 46e1fd6 | 2017-11-07 13:24:44 +0000 | [diff] [blame] | 1 | ; 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. Denny | dc5ba31 | 2018-07-13 03:08:23 +0000 | [diff] [blame] | 3 | ; |
| 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 Richardson | 46e1fd6 | 2017-11-07 13:24:44 +0000 | [diff] [blame] | 6 | |
| 7 | Value = 10 |
| 8 | ; CHECK: Value = [[VALUE]] |
Joel E. Denny | dc5ba31 | 2018-07-13 03:08:23 +0000 | [diff] [blame] | 9 | ; NOT-NOT: Value = [[VALUE]] |
Alexander Richardson | 46e1fd6 | 2017-11-07 13:24:44 +0000 | [diff] [blame] | 10 | |
Thomas Preud'homme | 447abc5 | 2019-01-27 09:02:19 +0000 | [diff] [blame] | 11 | ; ERRMSG: defines.txt:8:10: error: CHECK: expected string not found in input |
Joel E. Denny | dc5ba31 | 2018-07-13 03:08:23 +0000 | [diff] [blame] | 12 | ; ERRMSG: defines.txt:1:1: note: scanning from here |
Alexander Richardson | 46e1fd6 | 2017-11-07 13:24:44 +0000 | [diff] [blame] | 13 | ; ERRMSG: defines.txt:1:1: note: with variable "VALUE" equal to "20" |
Thomas Preud'homme | 447abc5 | 2019-01-27 09:02:19 +0000 | [diff] [blame] | 14 | ; ERRMSG: defines.txt:7:1: note: possible intended match here |
Joel E. Denny | dc5ba31 | 2018-07-13 03:08:23 +0000 | [diff] [blame] | 15 | |
Thomas Preud'homme | 447abc5 | 2019-01-27 09:02:19 +0000 | [diff] [blame] | 16 | ; 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" |