We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08625c commit de276a9Copy full SHA for de276a9
src/tools/opt-dist/src/tests.rs
@@ -72,6 +72,7 @@ change-id = 115898
72
[rust]
73
channel = "{channel}"
74
verbose-tests = true
75
+debug-assertions = {debug_assertions}
76
77
[build]
78
rustc = "{rustc}"
@@ -83,7 +84,8 @@ llvm-config = "{llvm_config}"
83
84
"#,
85
rustc = rustc_path.to_string().replace('\\', "/"),
86
cargo = cargo_path.to_string().replace('\\', "/"),
- llvm_config = llvm_config.to_string().replace('\\', "/")
87
+ llvm_config = llvm_config.to_string().replace('\\', "/"),
88
+ debug_assertions = env.test_config().enable_debug_assertions,
89
);
90
log::info!("Using following `bootstrap.toml` for running tests:\n{config_content}");
91
0 commit comments