8000 fmt: make `panic!` error messages greppable by Samir-Rashid · Pull Request #4163 · tock/tock · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fmt: make panic! error messages greppable #4163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jum 8000 p to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions arch/rv32i/src/pmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1070,8 +1070,7 @@ pub mod test {
}
None => {
panic!(
"Failed to allocate region that does not overlap and \
should meet alignment constraints: {:?}",
"Failed to allocate region that does not overlap and should meet alignment constraints: {:?}",
region
);
}
Expand Down
3 changes: 1 addition & 2 deletions boards/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ fn main() {
.any(|f| f.contains("cfg_tock_buildflagssentinel"))
{
panic!(
"Incorrect build configuration. \
Verify you have not unintentionally set the RUSTFLAGS environment variable."
"Incorrect build configuration. Verify you are using unstable cargo and have not unintentionally set the RUSTFLAGS environment variable."
);
}
}
Expand Down
Loading
0