diff options
author | Tanya Lattner <tonic@nondot.org> | 2006-04-20 04:45:59 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2006-04-20 04:45:59 +0000 |
commit | 79674968b616fd04ce893081f57af52ef96fdc04 (patch) | |
tree | dd6484de0b6d364cae6857ccde35e38e6f6c065c /llvm/docs/TestingGuide.html | |
parent | 3962e5965a3d61f4cdf2e94f61dbbcbe432599b3 (diff) | |
download | bcm5719-llvm-79674968b616fd04ce893081f57af52ef96fdc04.tar.gz bcm5719-llvm-79674968b616fd04ce893081f57af52ef96fdc04.zip |
Added note about being able to XFAIL based on llvmgcc version.
llvm-svn: 27856
Diffstat (limited to 'llvm/docs/TestingGuide.html')
-rw-r--r-- | llvm/docs/TestingGuide.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/TestingGuide.html b/llvm/docs/TestingGuide.html index ac8e72bcb5e..2b7938d238a 100644 --- a/llvm/docs/TestingGuide.html +++ b/llvm/docs/TestingGuide.html @@ -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> |