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

Rollup of 8 pull requests #108439

Closed
wants to merge 17 commits into from

Commits on Feb 23, 2023

  1. support x fmt for sub and outside of rust directories

    Signed-off-by: ozkanonur <work@onurozkan.dev>
    onur-ozkan committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    49516b3 View commit details
    Browse the repository at this point in the history
  2. docs: use intra-doc links for Vec::get(_mut)

    Now that rust-lang#63351 is fixed, there's no reason not to.
    notriddle committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    a402cb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5a9a3df View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b6e0efe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4ff1c4d View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Configuration menu
    Copy the full SHA
    37d4302 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a861b19 View commit details
    Browse the repository at this point in the history
  3. Migrate rustc_hir_analysis to session diagnostic

    Part one, lib.rs file
    obeis committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    34966aa View commit details
    Browse the repository at this point in the history
  4. Update fuchsia-test-runner.py and docs

    This updates the test runner to the latest version of the SDK and fixes
    debugging support for Rust source code.
    David Koloski committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    6e7902b View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#108354 - djkoloski:update_fuchsia_test_runn…

    …er, r=djkoloski
    
    Update `fuchsia-test-runner.py` and docs
    
    This updates the test runner to the latest version of the SDK and fixes debugging support for Rust source code.
    
    r? `@tmandry`
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    c1c0527 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#108404 - ozkanonur:108004, r=jyn514

    support `x fmt` for sub and outside of rust directories
    
    This PR makes `x fmt` to be succesfully work from sub or outside dir of rust.
    
    The following cases are tested and the results were successful.
    ```sh
    # from rust/library directory
    ../x fmt compiler --check
    ../x fmt compiler/rustc
    
    # from outside of rust directory
    ../../rust/x fmt library/std library/core --check
    ../../rust/x fmt library/std
    ```
    
    Resolves rust-lang#108004
    
    r? `@albertlarsan68`
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    dcaa764 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#108407 - notriddle:notriddle/vec-get-mut, r…

    …=thomcc
    
    docs: use intra-doc links for `Vec::get(_mut)`
    
    Now that rust-lang#63351 is fixed, there's no reason not to.
    
    CC rust-lang#75672
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    ba31bba View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#108410 - notriddle:notriddle/tag-item-summa…

    …ry, r=GuillaumeGomez
    
    rustdoc: avoid including `<li>` tags in item table short desc
    
    Fixes a bug seen at https://docs.rs/gl_constants/0.1.1/gl_constants/index.html
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    fd45f73 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#108412 - GuillaumeGomez:fix-gui-test-naviga…

    …tion-bug, r=notriddle
    
    Fix GUI test navigation bug
    
    Following GuillaumeGomez/browser-UI-test#438, we can now remove this `wait-for`.
    
    Should help with rust-lang#93784.
    
    r? `@notriddle`
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    cd9630c View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#108431 - GuillaumeGomez:regression-test-for…

    …-107918, r=notriddle
    
    Add regression test for rust-lang#107918
    
    Fixes rust-lang#107918.
    
    r? `@notriddle`
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    d93b438 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#108433 - compiler-errors:missing-provider-n…

    …it, r=Nilstrieb
    
    Wrap missing provider message correctly
    
    Fixes rust-lang#108429
    
    ```
    error: internal compiler error: compiler/rustc_middle/src/ty/query.rs:441:1: `tcx.trigger_delay_span_bug(DefId(0:3 ~ test[78c5]::main))` is not supported for local crate;
                                    hint: Queries can be either made to the local crate, or the external crate. This error means you tried to use it for one that's not supported.
                                    If that's not the case, trigger_delay_span_bug was likely never assigned to a provider function.
    
    thread 'rustc' panicked at 'Box<dyn Any>', /home/ec2-user/rust3/compiler/rustc_errors/src/lib.rs:1651:9
    stack backtrace:
       0:     0x7f51870926d7 - std::backtrace_rs::backtrace::libunwind::trace::hb0876bb39e7adf0d
                                   at /home/ec2-user/rust3/library/std/src/../../backtrace/src/backtrace/libunwind.rs:93:5
       1:     0x7f51870926d7 - std::backtrace_rs::backtrace::trace_unsynchronized::h1bcab1313827007b
                                   at /home/ec2-user/rust3/library/std/src/../../backtrace/src/backtrace/mod.rs:66:5
       2:     0x7f5187077e07 - std::sys_common::backtrace::_print_fmt::h262d2a62279fa102
                                   at /home/ec2-user/rust3/library/std/src/sys_common/backtrace.rs:65:5
    ```
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    2b43a98 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#108434 - obeis:hir-analysis-migrate-diagnos…

    …tics, r=Nilstrieb
    
    Migrate `rustc_hir_analysis` to session diagnostic [Part One]
    
    Finishing `lib.rs` file
    Updates rust-lang#100717
    r? `@davidtwco`
    matthiaskrgr committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    abdd7f8 View commit details
    Browse the repository at this point in the history