search for: bla5

Displaying 7 results from an estimated 7 matches for "bla5".

Did you mean: bla
2016 Dec 14
2
[FileCheck] Add --verbose
Hi, this patch adds a --verbose option to FileCheck. [ An alternative name could be --debug or --debug-pattern. ] Consider a file CHECK: ... // CHECK-LABEL:bla1 // CHECK-NEXT:bla2 // CHECK-NEXT: bla3 // CHECK-NEXT:bla4 // CHECK-NEXT: bla5 ... and a FileCheck command using --verbose: ... $ echo | FileCheck CHECK --strict-whitespace --match-full-lines --verbose ... For each check the actual match pattern used is shown: ... CHECK:1:16: note: RegEx string match: '^bla1$' // CHECK-LABEL:bla1 ^ CHECK:2:15: note:...
2016 Dec 14
0
[FileCheck] Add --verbose
...ote: > Hi, > > this patch adds a --verbose option to FileCheck. [ An alternative name > could be --debug or --debug-pattern. ] > > Consider a file CHECK: > ... > // CHECK-LABEL:bla1 > // CHECK-NEXT:bla2 > // CHECK-NEXT: bla3 > // CHECK-NEXT:bla4 > // CHECK-NEXT: bla5 > ... > > and a FileCheck command using --verbose: > ... > $ echo | FileCheck CHECK --strict-whitespace --match-full-lines --verbose > ... > > For each check the actual match pattern used is shown: > ... > CHECK:1:16: note: RegEx string match: '^bla1$' > //...
2016 Dec 14
1
[FileCheck] Add --verbose
...verbose option to FileCheck. [ An alternative name > > could be --debug or --debug-pattern. ] > > > > Consider a file CHECK: > > ... > > // CHECK-LABEL:bla1 > > // CHECK-NEXT:bla2 > > // CHECK-NEXT: bla3 > > // CHECK-NEXT:bla4 > > // CHECK-NEXT: bla5 > > ... > > > > and a FileCheck command using --verbose: > > ... > > $ echo | FileCheck CHECK --strict-whitespace --match-full-lines -- > verbose > > ... > > > > For each check the actual match pattern used is shown: > > ... > > CHECK:1...
2016 Dec 14
4
[FileCheck] Fix --strict-whitespace --match-full-lines
Hi, this patch fixes a problem with leading/trailing whitespace matching for FileCheck --strict-whitespace --match-full-lines. Consider a text file: ... $ cat DUMP bla1 bla2 bla3 bla4 bla5 ... with some leading and trailing spaces, made more visible like this: ... $ sed 's/ /_/g' DUMP bla1 bla2 _bla3 bla4_ _bla5_ ... and a FileCheck file CHECK to match DUMP: ... $ cat CHECK // CHECK-LABEL:bla1 // CHECK-NEXT:bla2 // CHECK-NEXT: bla3 // CHECK-NEXT:bla4 // CHECK-NEXT: bla5 ......
2016 Dec 14
0
[FileCheck] Fix --strict-whitespace --match-full-lines
...--strict-whitespace --match-full-lines > > Hi, > > this patch fixes a problem with leading/trailing whitespace matching for > FileCheck --strict-whitespace --match-full-lines. > > Consider a text file: > ... > $ cat DUMP > bla1 > bla2 > bla3 > bla4 > bla5 > ... > > with some leading and trailing spaces, made more visible like this: > ... > $ sed 's/ /_/g' DUMP > bla1 > bla2 > _bla3 > bla4_ > _bla5_ > ... > > and a FileCheck file CHECK to match DUMP: > ... > $ cat CHECK > // CHECK-LABEL:bla1 &...
2016 Dec 15
3
[FileCheck] Fix --strict-whitespace --match-full-lines
...gt; Hi, >> >> this patch fixes a problem with leading/trailing whitespace matching for >> FileCheck --strict-whitespace --match-full-lines. >> >> Consider a text file: >> ... >> $ cat DUMP >> bla1 >> bla2 >> bla3 >> bla4 >> bla5 >> ... >> >> with some leading and trailing spaces, made more visible like this: >> ... >> $ sed 's/ /_/g' DUMP >> bla1 >> bla2 >> _bla3 >> bla4_ >> _bla5_ >> ... >> >> and a FileCheck file CHECK to match DUMP: &g...
2016 Dec 15
0
[FileCheck] Fix --strict-whitespace --match-full-lines
...th leading/trailing whitespace matching > for > >> FileCheck --strict-whitespace --match-full-lines. > >> > >> Consider a text file: > >> ... > >> $ cat DUMP > >> bla1 > >> bla2 > >> bla3 > >> bla4 > >> bla5 > >> ... > >> > >> with some leading and trailing spaces, made more visible like this: > >> ... > >> $ sed 's/ /_/g' DUMP > >> bla1 > >> bla2 > >> _bla3 > >> bla4_ > >> _bla5_ > >> ... > &g...