From f894d0edf95820125cd9dd15c9f52f31819f638f Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Thu, 20 Apr 2006 04:45:59 +0000 Subject: [PATCH] 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 --- docs/TestingGuide.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index ac8e72bcb5e..2b7938d238a 100644 --- a/docs/TestingGuide.html +++ b/docs/TestingGuide.html @@ -323,14 +323,14 @@ platforms support grep -C. that you might find useful when writing RUN lines.

Lastly, you can easily mark a test that is expected to fail on a -specific platform by using the XFAIL keyword. Xfail lines are +specific platform or with a specific version of llvmgcc by using the XFAIL keyword. Xfail lines are specified in the comments of the test program using XFAIL, 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 XFAIL line:

-; XFAIL: darwin,sun
+; XFAIL: darwin,sun,llvmgcc4
 
-- 2.34.1