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

test: relax redactions for rust-lang/rust #14203

Merged
merged 2 commits into from
Jul 7, 2024

Commits on Jul 6, 2024

  1. test: relax redaction for sysroot

    sysroot is different when bootstrapping rustc
    
    ```
    ---- expected: tests/testsuite/cfg.rs:444:27
    ++++ actual:   stderr
       1    1 | [ERROR] output of --print=split-debuginfo missing when learning about target-specific information from rustc
       2    2 | command was: `[ROOT]/compiler/target/debug/compiler[..]--crate-type [..]`
       3    3 |
       4    4 | --- stdout
       5    5 | ___[EXE]
       6    6 | lib___.rlib
       7    7 | [..]___.[..]
       8    8 | [..]___.[..]
       9    9 | [..]___.[..]
      10   10 | [..]___.[..]
      11      - [..]rust[..]
           11 + /checkout/obj/build/[HOST_TARGET]/stage2
      12   12 |
    ```
    
    https://github.com/rust-lang-ci/rust/actions/runs/9814397548/job/27101968836#step:25:10913
    weihanglo committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    2b27914 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2024

  1. test: relax redaction for running ssh

    `ssh` binary is not available on some platforms.
    
    https://github.com/rust-lang-ci/rust/actions/runs/9814397548/job/27101968836#step:25:10940
    
    ```
    ---- git_auth::net_err_suggests_fetch_with_cli stdout ----
    running `/checkout/obj/build/x86_64-unknown-linux-gnu/stage2-tools/x86_64-unknown-linux-gnu/release/cargo check -v`
    running `/checkout/obj/build/x86_64-unknown-linux-gnu/stage2-tools/x86_64-unknown-linux-gnu/release/cargo check -v`
    thread 'git_auth::net_err_suggests_fetch_with_cli' panicked at tests/testsuite/git_auth.rs:439:10:
    
    ---- expected: tests/testsuite/git_auth.rs:415:27
    ++++ actual:   stderr
       1    1 | [UPDATING] git repository `ssh://needs-proxy.invalid/git`
       2    2 | [RUNNING] `git fetch --verbose --force --update-head-ok [..]ssh://needs-proxy.invalid/git[..] [..]+HEAD:refs/remotes/origin/HEAD[..]`
       3      - ssh: Could not resolve hostname needs-proxy.invalid: [..] not known
       4      - fatal: Could not read from remote repository.
       5      -
       6      - Please make sure you have the correct access rights
       7      - and the repository exists.
            3 + [ERROR] cannot run ssh: No such file or directory
            4 + fatal: unable to fork
       8    5 | [ERROR] failed to get `foo` as a dependency of package `foo v0.0.0 ([ROOT]/foo)`
       9    6 |
      10    7 | Caused by:
      11    8 |   failed to load source for dependency `foo`
      12    9 |
              ⋮
      15   12 |
      16   13 | Caused by:
      17   14 |   failed to fetch into: [ROOT]/home/.cargo/git/db/git-[HASH]
      18   15 |
      19   16 | Caused by:
      20      -   process didn't exit successfully: `git fetch --verbose --force --update-head-ok [..]ssh://needs-proxy.invalid/git[..] [..]+HEAD:refs/remotes/origin/HEAD[..]` ([EXIT_STATUS]: 128)
           17 +   process didn't exit successfully: `git fetch --verbose --force --update-head-ok 'ssh://needs-proxy.invalid/git' '+HEAD:refs/remotes/origin/HEAD'` ([EXIT_STATUS]: 128)
    ```
    weihanglo committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    e491c06 View commit details
    Browse the repository at this point in the history