summaryrefslogtreecommitdiff
path: root/utils/FileCheck
AgeCommit message (Expand)AuthorFilesLines
2016-06-14[FileCheck] Add --check-prefixes as a shorthand for multiple --check-prefix o...Daniel Sanders1-0/+5
2016-06-09Search for llvm-symbolizer binary in the same directory as argv[0], beforeRichard Smith1-1/+1
2016-05-27FileCheck: dump command line context with empty inputXinliang David Li1-0/+8
2016-02-29Reapply r262092: [FileCheck] Abort if -NOT is combined with another suffix.Paul Robinson1-1/+18
2016-02-26Revert r262092, caught LLD testsPaul Robinson1-18/+1
2016-02-26[FileCheck] Abort if -NOT is combined with another suffix.Paul Robinson1-1/+18
2016-02-11Add -match-full-lines argument to FileCheck.James Y Knight1-17/+32
2016-01-26Remove autoconf supportChris Bieneman1-21/+0
2015-11-17StringRef-ify some Option APIsDavid Blaikie1-1/+1
2015-09-20Cleanup places that passed SMLoc by const reference to pass it by value inste...Craig Topper1-1/+1
2015-09-10[FileCheck] Use range-based for loops. NFC.Benjamin Kramer1-26/+14
2015-05-29Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial typesBenjamin Kramer1-8/+4
2015-04-29[NFC] Updating FileCheck to reduce the std::vector interface used via cl::list.Chris Bieneman1-6/+8
2015-03-12Fix FileCheck: substr() expect the length of the string as 2nd argMehdi Amini1-2/+1
2015-02-26FileCheck: Add CHECK-SAMEDuncan P. N. Exon Smith1-2/+47
2014-11-19Make StringSet::insert return pair<iterator, bool> like other self-associativ...David Blaikie1-1/+1
2014-08-27Return a std::unique_ptr when creating a new MemoryBuffer.Rafael Espindola1-4/+5
2014-08-21Explicitly pass ownership of the MemoryBuffer to AddNewSourceBuffer using std...David Blaikie1-18/+19
2014-08-07FileCheck: Add a flag to allow checking empty inputJustin Bogner1-1/+6
2014-08-01Remove some calls to std::move.Rafael Espindola1-1/+1
2014-08-01Simplify the code a bit with std::unique_ptr.Rafael Espindola1-9/+5
2014-07-29Fix FileCheck crash when empty prefix is passed.Eli Bendersky1-0/+4
2014-07-11Add FileCheck -implicit-check-not option to allow stricter tests without addi...Alexander Kornienko1-1/+28
2014-07-06Update the MemoryBuffer API to use ErrorOr.Rafael Espindola1-10/+13
2014-06-26Revert "Introduce a string_ostream string builder facilty"Alp Toker1-1/+2
2014-06-26Introduce a string_ostream string builder faciltyAlp Toker1-2/+1
2014-06-13Remove the last uses of 'using std::error_code'Rafael Espindola1-5/+2
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-12Remove system_error.h.Rafael Espindola1-1/+1
2014-06-08[C++11] Use 'nullptr'.Craig Topper1-1/+1
2014-04-07When a CHECK-NEXT fails because there was no match on the next line, includeRichard Smith1-2/+9
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-3/+2
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles1-2/+2
2014-02-10[CMake] LLVMSupport should be responsible to provide system_libs.NAKAMURA Takumi1-6/+0
2014-01-03FileCheck: Print a nice error message for missing closing ']' in regex vars.Adrian Prantl1-4/+9
2013-12-20Install three utils, "FileCheck", "count", and "not", for now to appease llvm...NAKAMURA Takumi1-2/+2
2013-12-12Expose FileCheck's AddFixedStringToRegEx as Regex::escapeHans Wennborg1-31/+3
2013-11-20FileCheck: fix a bug with multiple --check-prefix options. Similar to r194565Daniel Sanders1-2/+3
2013-11-13FileCheck: fix matching of one check-prefix is a prefix of anotherAlexey Samsonov1-10/+11
2013-11-13FileCheck: fix a bug with multiple --check-prefix options.Alexey Samsonov1-3/+3
2013-11-10Allow multiple check prefixes in FileCheck.Matt Arsenault1-80/+237
2013-10-12Add missing #include's to cctype when using isdigit/alpha/etc.Will Dietz1-0/+1
2013-10-11Really fix CHECK-LABEL and CHECK-DAG interaction. This actually just restores...Stephen Lin1-9/+17
2013-10-11Fix handling of CHECK-DAG inside of CHECK-LABEL.Rafael Espindola1-6/+4
2013-10-07Revert "Revert "Windows: Add support for unicode command lines""David Majnemer1-1/+1
2013-10-06Revert "Windows: Add support for unicode command lines"David Majnemer1-1/+1
2013-10-06Windows: Add support for unicode command linesDavid Majnemer1-1/+1
2013-09-17Missed using check type enum in one placeMatt Arsenault1-6/+6
2013-09-17Use function's argument instead of the global flag.Matt Arsenault1-3/+3
2013-09-17FileCheck refactor: use enum instead of bunch of boolsMatt Arsenault1-76/+88