aboutsummaryrefslogtreecommitdiffstats
path: root/utils/FileCheck
Commit message (Expand)AuthorAgeFilesLines
* Add new directive called CHECK-LABEL to FileCheck.Stephen Lin2013-07-121-29/+94
* keep only the StringRef version of getFileOrSTDIN.Rafael Espindola2013-06-251-2/+2
* Add 'CHECK-DAG' supportMichael Liao2013-05-141-23/+147
* Refactor string checking. No functionality change.Michael Liao2013-05-141-62/+94
* Remove SMLoc paired with CHECK-NOT patterns. Not functionality change.Michael Liao2013-04-251-8/+9
* Remove tailing whitespacesMichael Liao2013-04-251-1/+1
* Plug a memory leak in FileCheck when the input file is empty.Benjamin Kramer2013-03-231-6/+6
* Add static cast to unsigned char whenever a character classification function...Guy Benyei2013-02-121-1/+1
* Canonicalize line endings to Linux style also when the --strict-whitespace fl...Guy Benyei2013-02-061-10/+14
* Sort the #include lines for utils/...Chandler Carruth2012-12-041-4/+4
* Fix a bug in FileCheck that wouldn't let define variables as follows:Eli Bendersky2012-12-021-4/+47
* Support referencing variables defined on the same line.Eli Bendersky2012-12-011-16/+40
* Clean up whitespace and add commentsEli Bendersky2012-11-301-7/+8
* Make FileCheck return 2 in case of an error as documented,Eli Bendersky2012-11-301-2/+2
* FileCheck: remove useless 'continue' at the end of a 'while(){}' loop.Dmitri Gribenko2012-11-151-1/+0
* Support for [[@LINE]], [[@LINE+<offset>]], [[@LINE-<offset>]] expressions inAlexander Kornienko2012-11-141-27/+94
* Clarify comment.Dmitri Gribenko2012-09-211-1/+1
* FileCheck: Fix off-by-one bug that made CHECK-NOT: ignore the next character ...Benjamin Kramer2012-09-181-2/+2
* Revert "Add -exact-match option to FileCheck to allow clients to do exact mat...Ted Kremenek2012-09-081-5/+1
* Add -exact-match option to FileCheck to allow clients to do exact matches wit...Ted Kremenek2012-09-071-1/+5
* Make SMDiagnostic a little more sane. Instead of passing around note/warning...Chris Lattner2011-10-161-36/+37
* Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does...Chris Lattner2011-10-161-1/+1
* fix PR9629 - We were lowering regexes like a{{b|c}}d into ab|cd, whichChris Lattner2011-04-091-0/+8
* various cleanups, no functionality change.Chris Lattner2011-04-091-10/+6
* Put targets on folders, if the IDE supports the feature.Oscar Fuentes2011-02-201-1/+1
* emit a specific error when the input file is empty. This fixes Chris Lattner2011-02-091-0/+5
* MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer2010-12-161-6/+9
* Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer2010-12-091-8/+7
* Merge System into Support.Michael J. Spencer2010-11-293-5/+5
* FileCheck: Eliminate DOSish \r from input file.NAKAMURA Takumi2010-11-141-0/+5
* Teach FileCheck to handle trailing CHECK-NOT patterns.Jakob Stoklund Olesen2010-10-151-9/+22
* Trailing whitespace.Mikhail Glushenkov2010-08-201-80/+80
* stringref-ize the MemoryBuffer::get apis. This requiresChris Lattner2010-04-051-4/+2
* FileCheck: Don't print "possibly intended match" line if it would match theDaniel Dunbar2010-03-191-5/+6
* FileCheck: When looking for "possible matches", only compare against the prefixDaniel Dunbar2010-01-301-1/+4
* Minor code cleanup.Dan Gohman2010-01-291-1/+1
* Skip whitespace when looking for a potential intended match.Dan Gohman2010-01-291-0/+5
* Fix the position of the caret in the FileCheck error message.Dan Gohman2010-01-291-1/+4
* FileCheck: Switch "possible match" calculation to use StringRef::edit_distance.Daniel Dunbar2010-01-291-6/+1
* Fix FileCheck crash when fuzzy scanning starting at the end of the file.Daniel Dunbar2009-11-291-1/+1
* FileCheck, PR5239: Try to find the intended match on failures, but looking for aDaniel Dunbar2009-11-221-4/+60
* FileCheck: When a string using variable references fails to match, printDaniel Dunbar2009-11-221-4/+50
* Allow '_' in FileCheck variable names, it is nice to have at least oneDaniel Dunbar2009-11-221-2/+3
* implement and document support for filecheck variables. ThisChris Lattner2009-09-271-43/+172
* remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner2009-09-261-1/+1
* reject attempts to use ()'s in patterns, these are reserved for filecheck.Chris Lattner2009-09-251-3/+15
* reimplement the regex matching strategy by building a singleChris Lattner2009-09-251-88/+51
* special case Patterns that are a single fixed string. This is a microscopicChris Lattner2009-09-251-0/+16
* filecheck should not match a \n with a .Chris Lattner2009-09-251-3/+1
* turn a std::pair into a real class.Chris Lattner2009-09-251-23/+34