Added note about being able to XFAIL based on llvmgcc version.
authorTanya Lattner <tonic@nondot.org>
Thu, 20 Apr 2006 04:45:59 +0000 (04:45 +0000)
committerTanya Lattner <tonic@nondot.org>
Thu, 20 Apr 2006 04:45:59 +0000 (04:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27856 91177308-0d34-0410-b5e6-96231b3b80d8

docs/TestingGuide.html

index ac8e72bcb5e341c57111eb6c3970ec1dc5449b93..2b7938d238a19d07ec328163e90fd68759432b58 100644 (file)
@@ -323,14 +323,14 @@ platforms support grep -C.</dd>
 that you might find useful when writing <tt>RUN</tt> lines.</p>
 
 <p>Lastly, you can easily mark a test that is expected to fail on a
-specific platform by using the <tt>XFAIL</tt> keyword. Xfail lines are
+specific platform or with a specific version of llvmgcc by using the <tt>XFAIL</tt> keyword. Xfail lines are
 specified in the comments of the test program using <tt>XFAIL</tt>,
 followed by a colon, and one or more regular expressions (separated by
 a comma) that will match against the target triplet for the
 machine. You can use * to match all targets. Here is an example of an
 <tt>XFAIL</tt> line:</p>
 <pre>
-; XFAIL: darwin,sun
+; XFAIL: darwin,sun,llvmgcc4
 </pre>
 
 </div>