aboutsummaryrefslogtreecommitdiff
path: root/llvm/docs/CommandGuide/FileCheck.pod
AgeCommit message (Collapse)AuthorFilesLines
2010-10-15Teach FileCheck to handle trailing CHECK-NOT patterns.Jakob Stoklund Olesen1-1/+1
A CHECK-NOT pattern without a following CHECK pattern simply checks that the pattern doesn't match before the end of the input file. You can even have only CHECK-NOT patterns to check that strings appear nowhere in the input file. llvm-svn: 116592
2010-05-07Revert r103213. It broke several sections of live website.mike-m1-0/+245
llvm-svn: 103219
2010-05-06Overhauled llvm/clang docs builds. Closes PR6613.mike-m1-245/+0
NOTE: 2nd part changeset for cfe trunk to follow. *** PRE-PATCH ISSUES ADDRESSED - clang api docs fail build from objdir - clang/llvm api docs collide in install PREFIX/ - clang/llvm main docs collide in install - clang/llvm main docs have full of hard coded destination assumptions and make use of absolute root in static html files; namely CommandGuide tools hard codes a website destination for cross references and some html cross references assume website root paths *** IMPROVEMENTS - bumped Doxygen from 1.4.x -> 1.6.3 - splits llvm/clang docs into 'main' and 'api' (doxygen) build trees - provide consistent, reliable doc builds for both main+api docs - support buid vs. install vs. website intentions - support objdir builds - document targets with 'make help' - correct clean and uninstall operations - use recursive dir delete only where absolutely necessary - added call function fn.RMRF which safeguards against botched 'rm -rf'; if any target (or any variable is evaluated) which attempts to remove any dirs which match a hard-coded 'safelist', a verbose error will be printed and make will error-stop. llvm-svn: 103213
2010-02-18Refer to -help instead of --help since this is what tools themselves say.Duncan Sands1-1/+1
Also, have tools output -help-hidden rather than refer to --help-hidden, for consistency, and likewise adjust documentation. This doesn't change every mention of --help, only those which seemed clearly safe. llvm-svn: 96578
2009-11-22Allow '_' in FileCheck variable names, it is nice to have at least oneDaniel Dunbar1-1/+1
separate character. - Chris, OK? llvm-svn: 89626
2009-10-17check in a bunch of content from TestingGuide. Part of PR5216Chris Lattner1-3/+183
llvm-svn: 84309
2009-08-15fix pasto noticed by JakubChris Lattner1-1/+1
llvm-svn: 79109
2009-08-15add a simple FileCheck man page.Chris Lattner1-0/+65
llvm-svn: 79105