diff options
| author | mitaa <mitaa.ceb@gmail.com> | 2016-03-28 15:41:22 +0200 |
|---|---|---|
| committer | mitaa <mitaa.ceb@gmail.com> | 2016-03-28 16:07:07 +0200 |
| commit | 4e0abdb021a704842b3c2702b533643fafa166df (patch) | |
| tree | f512b9ac00f298e04ab5588c47b3663de3c054b3 /src | |
| parent | b01da7282dc5b71cfe78d4cd54c664bcbb13b393 (diff) | |
| download | rust-4e0abdb021a704842b3c2702b533643fafa166df.tar.gz rust-4e0abdb021a704842b3c2702b533643fafa166df.zip | |
Add FIXME for linkchecker whitlists
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/linkchecker/main.rs | 7 |
1 files 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) |
