forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#126036 - Oneirical:the-intelligent-intestor, …
…r=<try> Migrate `run-make/short-ice` to `rmake` Part of rust-lang#121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html). try-job: x86_64-msvc
- Loading branch information
Showing
5 changed files
with
47 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Backtraces in internal compiler errors used to be unbearably long, spanning | ||
// multiple hundreds of lines. A fix was pushed in #108938, and this test gathers | ||
// varied metrics on level 1 and full-level backtraces to check that the output | ||
// was shortened down to an appropriate length. | ||
// See https://github.com/rust-lang/rust/issues/107910 | ||
|
||
// FIXME do not ignore windows | ||
|
||
use run_make_support::rustc; | ||
|
||
fn main() { | ||
let rust_test_1 = | ||
rustc().set_backtrace_level("1").input("src/lib.rs").arg("-Ztreat-err-as-bug=1").run_fail(); | ||
let rust_test_2 = rustc() | ||
.set_backtrace_level("full") | ||
.input("src/lib.rs") | ||
.arg("-Ztreat-err-as-bug=1") | ||
.run_fail(); | ||
|
||
let mut rust_test_log_1 = rust_test_1.stderr_utf8(); | ||
rust_test_log_1.push_str(&rust_test_1.stdout_utf8()); | ||
let rust_test_log_1 = rust_test_log_1.as_str(); | ||
|
||
let mut rust_test_log_2 = rust_test_2.stderr_utf8(); | ||
rust_test_log_2.push_str(&rust_test_2.stdout_utf8()); | ||
let rust_test_log_2 = rust_test_log_2.as_str(); | ||
|
||
let rustc_query_count_full = count_lines_with(rust_test_log_2, "rustc_query_"); | ||
|
||
assert!(rust_test_log_1.lines().count() < rust_test_log_2.lines().count()); | ||
assert_eq!( | ||
count_lines_with(rust_test_log_2, "__rust_begin_short_backtrace"), | ||
count_lines_with(rust_test_log_2, "__rust_end_short_backtrace") | ||
); | ||
assert!(count_lines_with(rust_test_log_1, "rustc_query_") + 5 < rustc_query_count_full); | ||
assert!(rustc_query_count_full > 5); | ||
} | ||
|
||
fn count_lines_with(s: &str, search: &str) -> usize { | ||
s.lines().filter(|l| l.contains(search)).count() | ||
} |