Debugging info
[oota-llvm.git] / docs / TestingGuide.html
index 830ee68015b8e2375100880fd992c033e41053c7..3be9279673d6764c95060f551bddfc40ae098d02 100644 (file)
@@ -91,8 +91,8 @@ filenames themselves on the <tt>configure</tt> line.</li>
 
 <p>Darwin (Mac OS X) developers can simplify the installation of Expect and tcl
 by using fink.  <tt>fink install expect</tt> will install both. Alternatively,
-users not using Darwin can use <tt>sudo port install expect</tt> to install
-Expect and tcl.</p>
+Darwinports users can use <tt>sudo port install expect</tt> to install Expect
+and tcl.</p>
 
 </div>
 
@@ -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
+a comma) that will match against the target triplet or llvmgcc version for the
+machine. You can use * to match all targets. You can specify the major or full version (i.e. 3.4) for llvmgcc. Here is an example of an
 <tt>XFAIL</tt> line:</p>
 <pre>
-; XFAIL: darwin,sun
+; XFAIL: darwin,sun,llvmgcc4
 </pre>
 
 </div>