aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-02-23 07:56:28 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-02-23 07:56:28 +0000
commit3e673281fa08e6c5f64d31859d906221ed5eed0f (patch)
tree067ca8ef848679b076a9decaf616a70b91fc05e3 /docs
parent6297084ec1789dbd5f7c667dd3f27cb88351633e (diff)
downloadexternal_llvm-3e673281fa08e6c5f64d31859d906221ed5eed0f.zip
external_llvm-3e673281fa08e6c5f64d31859d906221ed5eed0f.tar.gz
external_llvm-3e673281fa08e6c5f64d31859d906221ed5eed0f.tar.bz2
Eliminate llvmgcc_version testing variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96908 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/TestingGuide.html19
1 files changed, 7 insertions, 12 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html
index a92dbe9..99d3fec 100644
--- a/docs/TestingGuide.html
+++ b/docs/TestingGuide.html
@@ -761,9 +761,6 @@ substitutions</a></div>
<dd>The full path to the <tt>llvm-gxx</tt> executable as specified in the
configured LLVM environment</dd>
- <dt><b>llvmgcc_version</b> (%llvmgcc_version)</dt>
- <dd>The full version number of the <tt>llvm-gcc</tt> executable.</dd>
-
<dt><b>gccpath</b></dt>
<dd>The full path to the C compiler used to <i>build </i> LLVM. Note that
this might not be gcc.</dd>
@@ -821,22 +818,20 @@ substitutions</a></div>
</dl>
<p>Sometimes it is necessary to mark a test case as "expected fail" or XFAIL.
- You can easily mark a test as XFAIL just by including <tt>XFAIL: </tt> on a
+ You can easily mark a test as XFAIL just by including <tt>XFAIL: </tt> on a
line near the top of the file. This signals that the test case should succeed
if the test fails. Such test cases are counted separately by DejaGnu. To
specify an expected fail, use the XFAIL keyword in the comments of the test
program followed by a colon and one or more regular expressions (separated by
- a comma). The regular expressions allow you to XFAIL the test conditionally
- by host platform. The regular expressions following the : are matched against
- the target triplet or llvmgcc version number for the host machine. If there is
- a match, the test is expected to fail. If not, the test is expected to
- succeed. To XFAIL everywhere just specify <tt>XFAIL: *</tt>. When matching
- the llvm-gcc version, you can specify the major (e.g. 3) or full version
- (i.e. 3.4) number. Here is an example of an <tt>XFAIL</tt> line:</p>
+ a comma). The regular expressions allow you to XFAIL the test conditionally by
+ host platform. The regular expressions following the : are matched against the
+ target triplet for the host machine. If there is a match, the test is expected
+ to fail. If not, the test is expected to succeed. To XFAIL everywhere just
+ specify <tt>XFAIL: *</tt>. Here is an example of an <tt>XFAIL</tt> line:</p>
<div class="doc_code">
<pre>
-; XFAIL: darwin,sun,llvmgcc4
+; XFAIL: darwin,sun
</pre>
</div>