aboutsummaryrefslogtreecommitdiff
path: root/utils/FileCheck/FileCheck.cpp
AgeCommit message (Expand)Author
2013-03-23Plug a memory leak in FileCheck when the input file is empty.Benjamin Kramer
2013-02-12Add static cast to unsigned char whenever a character classification function...Guy Benyei
2013-02-06Canonicalize line endings to Linux style also when the --strict-whitespace fl...Guy Benyei
2012-12-04Sort the #include lines for utils/...Chandler Carruth
2012-12-02Fix a bug in FileCheck that wouldn't let define variables as follows:Eli Bendersky
2012-12-01Support referencing variables defined on the same line.Eli Bendersky
2012-11-30Clean up whitespace and add commentsEli Bendersky
2012-11-30Make FileCheck return 2 in case of an error as documented,Eli Bendersky
2012-11-15FileCheck: remove useless 'continue' at the end of a 'while(){}' loop.Dmitri Gribenko
2012-11-14Support for [[@LINE]], [[@LINE+<offset>]], [[@LINE-<offset>]] expressions inAlexander Kornienko
2012-09-21Clarify comment.Dmitri Gribenko
2012-09-18FileCheck: Fix off-by-one bug that made CHECK-NOT: ignore the next character ...Benjamin Kramer
2012-09-08Revert "Add -exact-match option to FileCheck to allow clients to do exact mat...Ted Kremenek
2012-09-07Add -exact-match option to FileCheck to allow clients to do exact matches wit...Ted Kremenek
2011-10-16Make SMDiagnostic a little more sane. Instead of passing around note/warning...Chris Lattner
2011-10-16Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does...Chris Lattner
2011-04-09fix PR9629 - We were lowering regexes like a{{b|c}}d into ab|cd, whichChris Lattner
2011-04-09various cleanups, no functionality change.Chris Lattner
2011-02-09emit a specific error when the input file is empty. This fixes Chris Lattner
2010-12-16MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer
2010-12-09Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-14FileCheck: Eliminate DOSish \r from input file.NAKAMURA Takumi
2010-10-15Teach FileCheck to handle trailing CHECK-NOT patterns.Jakob Stoklund Olesen
2010-08-20Trailing whitespace.Mikhail Glushenkov
2010-04-05stringref-ize the MemoryBuffer::get apis. This requiresChris Lattner
2010-03-19FileCheck: Don't print "possibly intended match" line if it would match theDaniel Dunbar
2010-01-30FileCheck: When looking for "possible matches", only compare against the prefixDaniel Dunbar
2010-01-29Minor code cleanup.Dan Gohman
2010-01-29Skip whitespace when looking for a potential intended match.Dan Gohman
2010-01-29Fix the position of the caret in the FileCheck error message.Dan Gohman
2010-01-29FileCheck: Switch "possible match" calculation to use StringRef::edit_distance.Daniel Dunbar
2009-11-29Fix FileCheck crash when fuzzy scanning starting at the end of the file.Daniel Dunbar
2009-11-22FileCheck, PR5239: Try to find the intended match on failures, but looking for aDaniel Dunbar
2009-11-22FileCheck: When a string using variable references fails to match, printDaniel Dunbar
2009-11-22Allow '_' in FileCheck variable names, it is nice to have at least oneDaniel Dunbar
2009-09-27implement and document support for filecheck variables. ThisChris Lattner
2009-09-26remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner
2009-09-25reject attempts to use ()'s in patterns, these are reserved for filecheck.Chris Lattner
2009-09-25reimplement the regex matching strategy by building a singleChris Lattner
2009-09-25special case Patterns that are a single fixed string. This is a microscopicChris Lattner
2009-09-25filecheck should not match a \n with a .Chris Lattner
2009-09-25turn a std::pair into a real class.Chris Lattner
2009-09-24add and document regex support for FileCheck. You can now do stuff like:Chris Lattner
2009-09-24Use CanonicalizeInputFile to canonicalize the entire buffer containing theChris Lattner
2009-09-24change 'not' matching to use Pattern, move pattern parsing logic intoChris Lattner
2009-09-24refactor out the match string into its own Pattern class.Chris Lattner
2009-09-21fix a FileCheck bug where:Chris Lattner
2009-09-20rewrite CountNumNewlinesBetween to be in terms of StringRef.Chris Lattner
2009-09-20implement and document support for CHECK-NOTChris Lattner