Skip to content

Commit 2a9caf6

Browse files
committed
This PR includes the following changes:
1. Moves TOML build parsing into a separate module. 2. Corrects the ordering of `apply_*_config` method calls. 3. Moves download logic specific to `toml_config` into its own module. 4. Updates tests to align with the correct behavior.
1 parent 6c0a912 commit 2a9caf6

File tree

7 files changed

+749
-712
lines changed

7 files changed

+749
-712
lines changed

src/bootstrap/src/core/builder/tests.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1638,6 +1638,7 @@ mod snapshot {
16381638
.render_steps(), @r"
16391639
[build] llvm <host>
16401640
[build] rustc 0 <host> -> rustc 1 <host>
1641+
[build] rustc 0 <host> -> LldWrapper 1 <host>
16411642
[build] rustdoc 0 <host>
16421643
[doc] std 1 <host> crates=[core]
16431644
");
@@ -1653,6 +1654,7 @@ mod snapshot {
16531654
.render_steps(), @r"
16541655
[build] llvm <host>
16551656
[build] rustc 0 <host> -> rustc 1 <host>
1657+
[build] rustc 0 <host> -> LldWrapper 1 <host>
16561658
[build] rustdoc 0 <host>
16571659
[doc] std 1 <host> crates=[alloc,core]
16581660
");

0 commit comments

Comments
 (0)