From 4e0abdb021a704842b3c2702b533643fafa166df Mon Sep 17 00:00:00 2001 From: mitaa Date: Mon, 28 Mar 2016 15:41:22 +0200 Subject: [PATCH] Add FIXME for linkchecker whitlists --- src/tools/linkchecker/main.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs index 7116cb01d6b..12419d4f7e5 100644 --- a/src/tools/linkchecker/main.rs +++ b/src/tools/linkchecker/main.rs @@ -133,8 +133,11 @@ fn check(cache: &mut Cache, // Unfortunately we're not 100% full of valid links today to we need a few // whitelists to get this past `make check` today. // FIXME(#32129) - if file.ends_with("std/string/struct.String.html") || - file.ends_with("collections/string/struct.String.html") { + if file.ends_with("std/string/struct.String.html") { + return None; + } + // FIXME(#32553) + if file.ends_with("collections/string/struct.String.html") { return None; } // FIXME(#32130)