summaryrefslogtreecommitdiff
path: root/docs/TestingGuide.html
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2012-04-19 16:31:37 +0000
committerDaniel Dunbar <daniel@zuster.org>2012-04-19 16:31:37 +0000
commit21e993c1b1083ef91441a363997d0efc8e646191 (patch)
tree1c07b2ea2dd18b8219d46415cee365abc93578e2 /docs/TestingGuide.html
parent75083ebc09a3dd47099e3912ac090dbc907f3eaf (diff)
downloadllvm-21e993c1b1083ef91441a363997d0efc8e646191.tar.gz
llvm-21e993c1b1083ef91441a363997d0efc8e646191.tar.bz2
llvm-21e993c1b1083ef91441a363997d0efc8e646191.tar.xz
[docs] Convert docs index page into Sphinx.
- Work in progress, this is mostly important because it lets us incrementally migrate the remaining documentation. - Lots of styling, editing, and integration work yet to comeā€¦ - PR12589 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155133 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TestingGuide.html')
-rw-r--r--docs/TestingGuide.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index 233a157aad..acf52df8d3 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -626,6 +626,8 @@ define i8 @coerce_offset0(i32 %V, i32* %P) {
<div>
+<!-- {% raw %} -->
+
<p>The CHECK: and CHECK-NOT: directives both take a pattern to match. For most
uses of FileCheck, fixed string matching is perfectly sufficient. For some
things, a more flexible form of matching is desired. To support this, FileCheck
@@ -650,6 +652,8 @@ braces like you would in C. In the rare case that you want to match double
braces explicitly from the input, you can use something ugly like
<b>{{[{][{]}}</b> as your pattern.</p>
+<!-- {% endraw %} -->
+
</div>
<!-- _______________________________________________________________________ -->
@@ -659,6 +663,9 @@ braces explicitly from the input, you can use something ugly like
<div>
+
+<!-- {% raw %} -->
+
<p>It is often useful to match a pattern and then verify that it occurs again
later in the file. For codegen tests, this can be useful to allow any register,
but verify that that register is used consistently later. To do this, FileCheck
@@ -690,6 +697,8 @@ that FileCheck is not actually line-oriented when it matches, this allows you to
define two separate CHECK lines that match on the same line.
</p>
+<!-- {% endraw %} -->
+
</div>
</div>