Skip to content
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

Fix running bootstrap tests with a local Rust toolchain as the stage0 #126476

Merged
merged 5 commits into from
Jul 10, 2024

Commits on Jun 14, 2024

  1. Configuration menu
    Copy the full SHA
    d3f1618 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fcb6ff5 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. set the correct executable for initial_{rustc,cargo}

    Due to the way the paths initial_rustc and initial_cargo were
    constructed before this commit, they mixed \ and / for path separators
    and they omitted the .exe suffix.
    
    This worked fine up until now, as Windows is capable of handling the
    mixed path separators and the Command::new API adds the ".exe" suffix if
    missing from the executable.
    
    This resulted in paths that didn't actually exist on disk though, due to
    the missing .exe suffix. This commit fixes that by adding the .exe
    suffix to initial_rustc and initial_cargo when --build is Windows.
    pietroalbini committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    198c809 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Configuration menu
    Copy the full SHA
    b4b2643 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. use utils::helpers::exe

    pietroalbini committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    9cd1d25 View commit details
    Browse the repository at this point in the history