Rollup merge of #111002 - Zalathar:x-suggest-dirs, r=Mark-Simulacrum
Fix the test directories suggested by `./x.py suggest` It seems that these paths were correct when #106249 was being written, but since then #106458 has been merged (moving `src/test/` to `tests/`), making the tool's suggestions incorrect.
This commit is contained in:
commit
cec5c40e4d
@ -15,7 +15,7 @@ macro_rules! static_suggestions {
|
||||
|
||||
"compiler/*" => [
|
||||
sug!("check"),
|
||||
sug!("test", 1, ["src/test/ui", "src/test/run-make"])
|
||||
sug!("test", 1, ["tests/ui", "tests/run-make"])
|
||||
],
|
||||
|
||||
"src/librustdoc/*" => [
|
||||
|
@ -12,7 +12,7 @@ fn $name() {
|
||||
|
||||
sugg_test! {
|
||||
test_error_code_docs: ["compiler/rustc_error_codes/src/error_codes/E0000.md"] =>
|
||||
["check N/A", "test compiler/rustc_error_codes N/A", "test linkchecker 0", "test src/test/ui src/test/run-make 1"],
|
||||
["check N/A", "test compiler/rustc_error_codes N/A", "test linkchecker 0", "test tests/ui tests/run-make 1"],
|
||||
|
||||
test_rustdoc: ["src/librustdoc/src/lib.rs"] => ["test rustdoc 1"],
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user