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 | f894d0edf95820125cd9dd15c9f52f31819f638f (patch) | |
tree | 7b9f435cbd228299e5af7e34c847deaff1a33f64 /docs/TestingGuide.html | |
parent | b3c11009d06b71ee3cfdd568fdbb8e8895ffd34c (diff) | |
download | external_llvm-f894d0edf95820125cd9dd15c9f52f31819f638f.zip external_llvm-f894d0edf95820125cd9dd15c9f52f31819f638f.tar.gz external_llvm-f894d0edf95820125cd9dd15c9f52f31819f638f.tar.bz2 |
Added note about being able to XFAIL based on llvmgcc version.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27856 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TestingGuide.html')
-rw-r--r-- | docs/TestingGuide.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index ac8e72b..2b7938d 100644 --- a/docs/TestingGuide.html +++ b/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> |