index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
utils
/
FileCheck
Age
Commit message (
Expand
)
Author
2009-11-29
Fix FileCheck crash when fuzzy scanning starting at the end of the file.
Daniel Dunbar
2009-11-22
FileCheck, PR5239: Try to find the intended match on failures, but looking for a
Daniel Dunbar
2009-11-22
FileCheck: When a string using variable references fails to match, print
Daniel Dunbar
2009-11-22
Allow '_' in FileCheck variable names, it is nice to have at least one
Daniel Dunbar
2009-09-27
implement and document support for filecheck variables. This
Chris Lattner
2009-09-26
remove support for "NoSub" from regex. It seems like a minor optimization
Chris Lattner
2009-09-25
reject attempts to use ()'s in patterns, these are reserved for filecheck.
Chris Lattner
2009-09-25
reimplement the regex matching strategy by building a single
Chris Lattner
2009-09-25
special case Patterns that are a single fixed string. This is a microscopic
Chris Lattner
2009-09-25
filecheck should not match a \n with a .
Chris Lattner
2009-09-25
turn a std::pair into a real class.
Chris Lattner
2009-09-24
add and document regex support for FileCheck. You can now do stuff like:
Chris Lattner
2009-09-24
Use CanonicalizeInputFile to canonicalize the entire buffer containing the
Chris Lattner
2009-09-24
change 'not' matching to use Pattern, move pattern parsing logic into
Chris Lattner
2009-09-24
refactor out the match string into its own Pattern class.
Chris Lattner
2009-09-21
fix a FileCheck bug where:
Chris Lattner
2009-09-20
rewrite CountNumNewlinesBetween to be in terms of StringRef.
Chris Lattner
2009-09-20
implement and document support for CHECK-NOT
Chris Lattner
2009-09-20
rewrite FileCheck in terms of StringRef instead of manual pointer pairs.
Chris Lattner
2009-08-23
Don't install FileCheck or FileUpdate
Douglas Gregor
2009-08-16
when emitting errors about CHECK-NEXT directives, show the line that the
Chris Lattner
2009-08-15
implement support for CHECK-NEXT: in filecheck.
Chris Lattner
2009-08-15
simplify some code.
Chris Lattner
2009-08-15
rewrite FindStringInBuffer to use an explicit loop instead of
Chris Lattner
2009-08-15
Instead of using an std::pair, use a custom struct.
Chris Lattner
2009-08-02
Fix an ENABLE_EXPENSIVE_CHECKS error.
Daniel Dunbar
2009-07-11
Tweak comment.
Daniel Dunbar
2009-07-11
improve filecheck's "scanning from here" caret position.
Chris Lattner
2009-07-11
make filecheck default to canonicalizing horizontal whitespace
Chris Lattner
2009-07-09
stop on the first file mismatch.
Chris Lattner
2009-07-08
Add a new little "FileCheck" utility for regression testing.
Chris Lattner