Skip to content

Commit c482c44

Browse files
committed
Auto merge of rust-lang#131077 - lqd:debug-assertions-alt, r=<try>
Enable debug assertions on alt builds Alt builds already have llvm assertions enabled, and this PR adds rustc's debug assertions. We've discussed that this would be useful a few times in the past, most recently in [this zulip thread](https://rust-lang.zulipchat.com/#narrow/stream/182449-t-compiler.2Fhelp/topic/cargo.20bisect-rustc'ing.20a.20debug.20assertions-only.20ICE), for example to bisect the source PR of an unexpected tripped debug assert, which is not that rare of an occurrence. [In another thread](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Alt.20builds.20with.20debug.20assertions) we discussed how it would help with Matthias' fuzzing workflow, and some of Ben's work. I don't _believe_ this needs an MCP, but am not sure. To my knowledge there are 2 alt builds (x64 linux, x64 msvc) and this enables it for both, though we could limit to x64 linux if we wanted to. try-job: dist-x86_64-msvc-alt
2 parents 7d49ae9 + 6a637a0 commit c482c44

File tree

4 files changed

+57
-1
lines changed

4 files changed

+57
-1
lines changed

src/ci/run.sh

+5
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,11 @@ if [ "$DEPLOY$DEPLOY_ALT" = "1" ]; then
134134

135135
CODEGEN_BACKENDS="${CODEGEN_BACKENDS:-llvm}"
136136
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-backends=$CODEGEN_BACKENDS"
137+
138+
# Unless explicitly disabled, we want rustc debug assertions on the -alt builds
139+
if [ "$DEPLOY_ALT" != "" ] && [ "$NO_DEBUG_ASSERTIONS" = "" ]; then
140+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-debug-assertions"
141+
fi
137142
else
138143
# We almost always want debug assertions enabled, but sometimes this takes too
139144
# long for too little benefit, so we just turn them off.

src/tools/opt-dist/src/environment.rs

+36
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,27 @@ pub struct Environment {
2525
prebuilt_rustc_perf: Option<Utf8PathBuf>,
2626
use_bolt: bool,
2727
shared_llvm: bool,
28+
/// Additional configuration that bootstrap needs to know only when running tests.
29+
#[builder(default)]
30+
test_config: TestConfig,
31+
}
32+
33+
/// Builds have optional components, and their presence/absence can enable/disable a subset of
34+
/// tests. When testing the optimized artifacts, bootstrap needs to know about these enabled
35+
/// components to run the expected subset. This structure holds the known components where this
36+
/// matters: currently only whether the build to test is using debug assertions.
37+
///
38+
/// FIXME: ultimately, this is a temporary band-aid, and opt-dist should be more transparent to the
39+
/// CI config and bootstrap optional components: bootstrap has default values, combinations of flags
40+
/// that cascade into others, etc logic that we'd have to duplicate here otherwise. It's more
41+
/// sensible for opt-dist to never know about the config apart from the minimal set of paths
42+
/// required to configure stage0 tests.
43+
#[derive(Builder, Default, Clone, Debug)]
44+
pub struct TestConfig {
45+
/// Whether the build under test is explicitly using `--enable-debug-assertions`.
46+
/// Note that this flag can be implied from others, like `rust.debug`, and we do not handle any
47+
/// of these subtleties and defaults here, as per the FIXME above.
48+
pub enable_debug_assertions: bool,
2849
}
2950

3051
impl Environment {
@@ -101,6 +122,21 @@ impl Environment {
101122
pub fn benchmark_cargo_config(&self) -> &[String] {
102123
&self.benchmark_cargo_config
103124
}
125+
126+
pub fn test_config(&self) -> &TestConfig {
127+
&self.test_config
128+
}
129+
}
130+
131+
impl TestConfig {
132+
/// Returns the test config matching the given `RUST_CONFIGURE_ARGS` for the known optional
133+
/// components for tests. This is obviously extremely fragile and we'd rather opt-dist not
134+
/// handle any optional components.
135+
pub fn from_configure_args(configure_args: &str) -> TestConfig {
136+
let enable_debug_assertions =
137+
configure_args.split(" ").find(|part| *part == "--enable-debug-assertions").is_some();
138+
TestConfig { enable_debug_assertions }
139+
}
104140
}
105141

106142
/// What is the extension of binary executables on this platform?

src/tools/opt-dist/src/main.rs

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use anyhow::Context;
22
use camino::{Utf8Path, Utf8PathBuf};
33
use clap::Parser;
4+
use environment::TestConfig;
45
use log::LevelFilter;
56
use utils::io;
67

@@ -148,6 +149,11 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
148149

149150
let is_aarch64 = target_triple.starts_with("aarch64");
150151

152+
// Parse the optional build components that impact the test environment.
153+
let rust_configure_args = std::env::var("RUST_CONFIGURE_ARGS")
154+
.expect("RUST_CONFIGURE_ARGS environment variable missing");
155+
let test_config = TestConfig::from_configure_args(&rust_configure_args);
156+
151157
let checkout_dir = Utf8PathBuf::from("/checkout");
152158
let env = EnvironmentBuilder::default()
153159
.host_tuple(target_triple)
@@ -160,6 +166,7 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
160166
// FIXME: Enable bolt for aarch64 once it's fixed upstream. Broken as of December 2024.
161167
.use_bolt(!is_aarch64)
162168
.skipped_tests(vec![])
169+
.test_config(test_config)
163170
.build()?;
164171

165172
(env, shared.build_args)
@@ -168,6 +175,11 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
168175
let target_triple =
169176
std::env::var("PGO_HOST").expect("PGO_HOST environment variable missing");
170177

178+
// Parse the optional build components that impact the test environment.
179+
let rust_configure_args = std::env::var("RUST_CONFIGURE_ARGS")
180+
.expect("RUST_CONFIGURE_ARGS environment variable missing");
181+
let test_config = TestConfig::from_configure_args(&rust_configure_args);
182+
171183
let checkout_dir: Utf8PathBuf = std::env::current_dir()?.try_into()?;
172184
let env = EnvironmentBuilder::default()
173185
.host_tuple(target_triple)
@@ -179,6 +191,7 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
179191
.shared_llvm(false)
180192
.use_bolt(false)
181193
.skipped_tests(vec![])
194+
.test_config(test_config)
182195
.build()?;
183196

184197
(env, shared.build_args)

src/tools/opt-dist/src/tests.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ change-id = 115898
7272
[rust]
7373
channel = "{channel}"
7474
verbose-tests = true
75+
debug-assertions = {debug_assertions}
7576
7677
[build]
7778
rustc = "{rustc}"
@@ -83,7 +84,8 @@ llvm-config = "{llvm_config}"
8384
"#,
8485
rustc = rustc_path.to_string().replace('\\', "/"),
8586
cargo = cargo_path.to_string().replace('\\', "/"),
86-
llvm_config = llvm_config.to_string().replace('\\', "/")
87+
llvm_config = llvm_config.to_string().replace('\\', "/"),
88+
debug_assertions = env.test_config().enable_debug_assertions,
8789
);
8890
log::info!("Using following `bootstrap.toml` for running tests:\n{config_content}");
8991

0 commit comments

Comments
 (0)