diff options
| author | Oneirical <manchot@videotron.ca> | 2024-04-06 15:46:15 -0400 |
|---|---|---|
| committer | Oneirical <manchot@videotron.ca> | 2024-04-09 20:26:40 -0400 |
| commit | cbf150177f367e09156ee0e17d989b990f98c2f8 (patch) | |
| tree | 6a531d4f7b11f356b69ac3a1c51db6d455b9172a | |
| parent | 8b2459c1f21187f9792d99310171a15e64feb9cf (diff) | |
| download | rust-cbf150177f367e09156ee0e17d989b990f98c2f8.tar.gz rust-cbf150177f367e09156ee0e17d989b990f98c2f8.zip | |
remove does-nothing.rs
fix: restore issues_entry_limit
| -rw-r--r-- | src/tools/tidy/src/ui_tests.rs | 2 | ||||
| -rw-r--r-- | tests/ui/does-nothing.rs | 2 | ||||
| -rw-r--r-- | tests/ui/does-nothing.stderr | 9 |
3 files changed, 1 insertions, 12 deletions
diff --git a/src/tools/tidy/src/ui_tests.rs b/src/tools/tidy/src/ui_tests.rs index 05652541461..78de8c0537d 100644 --- a/src/tools/tidy/src/ui_tests.rs +++ b/src/tools/tidy/src/ui_tests.rs @@ -18,7 +18,7 @@ const ENTRY_LIMIT: usize = 900; // FIXME: The following limits should be reduced eventually. const ISSUES_ENTRY_LIMIT: usize = 1722; -const ROOT_ENTRY_LIMIT: usize = 861; +const ROOT_ENTRY_LIMIT: usize = 859; const EXPECTED_TEST_FILE_EXTENSIONS: &[&str] = &[ "rs", // test source files diff --git a/tests/ui/does-nothing.rs b/tests/ui/does-nothing.rs deleted file mode 100644 index e4992e2cfd3..00000000000 --- a/tests/ui/does-nothing.rs +++ /dev/null @@ -1,2 +0,0 @@ -fn main() { println!("doing"); this_does_nothing_what_the; println!("boing"); } -//~^ ERROR cannot find value `this_does_nothing_what_the` in this scope diff --git a/tests/ui/does-nothing.stderr b/tests/ui/does-nothing.stderr deleted file mode 100644 index d5ea3626e81..00000000000 --- a/tests/ui/does-nothing.stderr +++ /dev/null @@ -1,9 +0,0 @@ -error[E0425]: cannot find value `this_does_nothing_what_the` in this scope - --> $DIR/does-nothing.rs:1:32 - | -LL | fn main() { println!("doing"); this_does_nothing_what_the; println!("boing"); } - | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope - -error: aborting due to 1 previous error - -For more information about this error, try `rustc --explain E0425`. |
