Add FIXME for linkchecker whitlists

This commit is contained in:
mitaa 2016-03-28 15:41:22 +02:00
parent b01da7282d
commit 4e0abdb021
1 changed files with 5 additions and 2 deletions

View File

@ -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)