-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
unstable book: in a sanitizer example, check the code #139113
base: master
Are you sure you want to change the base?
unstable book: in a sanitizer example, check the code #139113
Conversation
rustbot has assigned @GuillaumeGomez. Use |
Some changes occurred in src/doc/unstable-book/src/compiler-flags/sanitizer.md cc @rust-lang/project-exploit-mitigations, @rcvalle |
Nice trick, thanks! @bors r+ rollup |
…-check-block, r=GuillaumeGomez unstable book: in a sanitizer example, check the code Use some `#` directives to make sure the code checks on x86_64, and does not produce errors on other platforms. This example still used an older version of `#[naked]`, and because the snippet was ignored that was missed before. I'm not sure when this gets built on CI exactly, so it might be worthwhile to try and build it for a non-x86_64 architecture to make sure that works. I'm not sure how to verify locally that e.g. on aarch64 this code works without errors/warnings.
Rollup of 6 pull requests Successful merges: - rust-lang#139044 (bootstrap: Avoid cloning `change-id` list) - rust-lang#139111 (Properly document FakeReads) - rust-lang#139113 (unstable book: in a sanitizer example, check the code) - rust-lang#139122 (Remove attribute `#[rustc_error]`) - rust-lang#139132 (Improve hir_pretty for struct expressions.) - rust-lang#139141 (Switch some rustc_on_unimplemented uses to diagnostic::on_unimplemented) r? `@ghost` `@rustbot` modify labels: rollup
acb3898
to
f8bc9ac
Compare
platforms are hard... This now runs the example just on x86_64: it already used x86_64 inline assembly, so the code was kind of meaningless on any other platform. The goal of the unstable book is not really to test the behavior, but more that the example compiles and is up-to-date, so this seemed like the best option to me. @rustbot ready I also added a try build to make sure this actually works on non-x86_64. |
f8bc9ac
to
0ffa4c6
Compare
This comment has been minimized.
This comment has been minimized.
0ffa4c6
to
5aec89a
Compare
This comment has been minimized.
This comment has been minimized.
this uses some # directives to make sure the code works on x86_64, and does not produce errors on other platforms
5aec89a
to
1c5c24f
Compare
Use some
#
directives to make sure the code checks on x86_64, and does not produce errors on other platforms. This example still used an older version of#[naked]
, and because the snippet was ignored that was missed before.I'm not sure when this gets built on CI exactly, so it might be worthwhile to try and build it for a non-x86_64 architecture to make sure that works. I'm not sure how to verify locally that e.g. on aarch64 this code works without errors/warnings.
try-job: aarch64-apple