diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-10-18 20:43:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-10-18 20:43:04 +0000 |
commit | 44a83f092029fa76bce05ff0c0598afc55215767 (patch) | |
tree | 64d64a8fcf554ad73832b5b724f8f992c2b10aa2 /docs | |
parent | 3298959540ca744ec16b4c65db244534a929a862 (diff) | |
download | external_llvm-44a83f092029fa76bce05ff0c0598afc55215767.zip external_llvm-44a83f092029fa76bce05ff0c0598afc55215767.tar.gz external_llvm-44a83f092029fa76bce05ff0c0598afc55215767.tar.bz2 |
lit: Allow XFAIL: lines to also refer to "features".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166224 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/TestingGuide.html | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index 1f9c915..fa3ff2b 100644 --- a/docs/TestingGuide.html +++ b/docs/TestingGuide.html @@ -798,14 +798,15 @@ define two separate CHECK lines that match on the same line. <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 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 the testing tool. 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 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> + if the test fails. Such test cases are counted separately by the testing + tool. To specify an expected fail, use the XFAIL keyword in the comments of + the test program followed by a colon and one or more failure patterns. Each + failure pattern can be either '*' (to specify fail everywhere), or a part of a + target triple (indicating the test should fail on that platfomr), or the name + of a configurable feature (for example, "loadable_module").. 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> |