rust/src/test
Yuki Okushi 9a827d9f7e
Rollup merge of #81223 - GuillaumeGomez:generate-redirect-map, r=jyn514
[rustdoc] Generate redirect map file

Fixes #81134.

So with this code:

```rust
#![crate_name = "foo"]

pub use private::Quz;
pub use hidden::Bar;

mod private {
    pub struct Quz;
}

#[doc(hidden)]
pub mod hidden {
    pub struct Bar;
}

#[macro_export]
macro_rules! foo {
() => {}
}
```

It generates:

```json
{
  "foo/macro.foo!.html": "foo/macro.foo.html",
  "foo/private/struct.Quz.html": "foo/struct.Quz.html",
  "foo/hidden/struct.Bar.html": "foo/struct.Bar.html"
}
```

Do the pathes look as you expected ````@pietroalbini?````

r? ````@jyn514````
2021-03-03 16:27:38 +09:00
..
assembly 32-bit ARM: Emit lr instead of r14 when specified as an asm! output register. 2021-02-14 23:41:10 -08:00
auxiliary
codegen Use -O in try_identity test that requires storage markers 2021-02-28 00:00:00 +00:00
codegen-units
debuginfo Update tests for extern block linting 2021-01-13 07:49:16 -05:00
incremental Revert "Auto merge of #79637 - spastorino:revert-trait-inheritance-self, r=Mark-Simulacrum" 2021-02-05 18:56:56 -03:00
mir-opt Remove storage markers if they won't be used during code generation 2021-02-28 20:10:44 +01:00
pretty Fix pretty printing of generic associated type constraints 2021-02-13 19:29:55 +00:00
run-make Remove storage markers if they won't be used during code generation 2021-02-28 20:10:44 +01:00
run-make-fulldeps Rollup merge of #81223 - GuillaumeGomez:generate-redirect-map, r=jyn514 2021-03-03 16:27:38 +09:00
run-pass-valgrind Update tests for extern block linting 2021-01-13 07:49:16 -05:00
rustdoc Rollup merge of #81223 - GuillaumeGomez:generate-redirect-map, r=jyn514 2021-03-03 16:27:38 +09:00
rustdoc-gui Add GUI tests 2021-02-28 23:01:29 +01:00
rustdoc-js Add test for primitive search 2021-02-01 15:56:51 +01:00
rustdoc-js-std Add search index test for primitive types 2021-01-27 10:05:06 +01:00
rustdoc-json Remove krate.version; fix crate_version in JSON 2021-03-01 00:30:40 -05:00
rustdoc-ui Rollup merge of #82662 - GuillaumeGomez:doc-attr-check, r=jyn514 2021-03-02 00:50:10 +01:00
rustfix
ui Rollup merge of #82627 - JohnTitor:issue-82612, r=estebank 2021-03-02 21:23:20 +09:00
ui-fulldeps Allow/fix non_fmt_panic in tests. 2021-02-03 23:15:45 +01:00
COMPILER_TESTS.md