rust/src/test
Joshua Nelson e3031fe22a Allow registering tool lints with register_tool
Previously, there was no way to add a custom tool prefix, even if the tool
itself had registered a lint:

 ```
 #![feature(register_tool)]
 #![register_tool(xyz)]
 #![warn(xyz::my_lint)]
 ```

```
$ rustc unknown-lint.rs  --crate-type lib
error[E0710]: an unknown tool name found in scoped lint: `xyz::my_lint`
 --> unknown-lint.rs:3:9
  |
3 | #![warn(xyz::my_lint)]
  |         ^^^
```

This allows opting-in to lints from other tools using `register_tool`.
2021-03-16 17:33:03 -04:00
..
assembly Support LLVM 12 in rustc 2021-02-28 10:19:44 +01:00
auxiliary
codegen Auto merge of #83044 - kubo39:set-llvm-code-model, r=nikic 2021-03-14 11:46:57 +00:00
codegen-units
debuginfo Update tests for extern block linting 2021-01-13 07:49:16 -05:00
incremental Avoid sorting predicates by DefId 2021-03-13 13:45:12 -05:00
mir-opt bless tests (32-bit) 2021-03-14 13:53:16 -04:00
pretty Update test/pretty output for edition preludes. 2021-02-25 13:43:11 +01:00
run-make Rollup merge of #83132 - Aaron1011:fix/incr-cache-dummy, r=estebank 2021-03-15 16:22:58 +01:00
run-make-fulldeps Fix src/test/run-make-fulldeps/issue-19371 2021-03-15 21:16:39 +08:00
run-pass-valgrind Update tests for extern block linting 2021-01-13 07:49:16 -05:00
rustdoc Auto merge of #82838 - Amanieu:rustdoc_asm, r=nagisa 2021-03-16 10:05:46 +00:00
rustdoc-gui Add test to ensure the attributes position when js is disabled 2021-03-09 21:40:04 +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 Rollup merge of #82571 - aDotInTheVoid:reexport-tests, r=CraftSpider 2021-03-12 08:55:13 +09:00
rustdoc-ui Auto merge of #82898 - oli-obk:tait_🧊, r=nikomatsakis 2021-03-16 04:24:48 +00:00
rustfix
ui Allow registering tool lints with register_tool 2021-03-16 17:33:03 -04:00
ui-fulldeps Rebase fallout. 2021-03-09 19:28:01 +01:00
COMPILER_TESTS.md