From a01a62391cb8988be45fca196bd1064548ff4266 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Tue, 28 Oct 2014 18:03:38 +0000 Subject: [PATCH] Fix example in documentation of target triple sanitization. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@220804 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index 8307b0c24..86eee058c 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -455,7 +455,7 @@ class Configuration(object): [self.cxx, '-dumpmachine']).strip() # Drop sub-major version components from the triple, because the # current XFAIL handling expects exact matches for feature checks. - # Example: x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu. + # Example: x86_64-apple-darwin14.0.0 -> x86_64-apple-darwin14 # The 5th group handles triples greater than 3 parts # (ex x86_64-pc-linux-gnu). target_triple = re.sub(r'([^-]+)-([^-]+)-([^.]+)([^-]*)(.*)',