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 #62219

Closed
wants to merge 33 commits into from
Closed

Commits on Jun 8, 2019

  1. Revert "Set test flag when rustdoc is running with --test option"

    This reverts commit 8ed2292.
    
    It caused doctests in this repository to no longer be tested including all of the core crate.
    ollie27 committed Jun 8, 2019
    Configuration menu
    Copy the full SHA
    6cc42ce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c747e0 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2019

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

Commits on Jun 21, 2019

  1. Configuration menu
    Copy the full SHA
    a8b2b1c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb2f841 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e02c655 View commit details
    Browse the repository at this point in the history
  4. fix long line

    RalfJung committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    8ceab32 View commit details
    Browse the repository at this point in the history
  5. show HTTP error body

    RalfJung committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    e10012d View commit details
    Browse the repository at this point in the history
  6. don't make PR author assignee; that break creating the issue when the…

    …y are not a team member
    RalfJung committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    ecca52c View commit details
    Browse the repository at this point in the history
  7. do as tidy says

    RalfJung committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    02863a3 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2019

  1. Configuration menu
    Copy the full SHA
    a56a6d7 View commit details
    Browse the repository at this point in the history
  2. 1 Configuration menu
    Copy the full SHA
    54337fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e364eb4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e4e0f95 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5baac07 View commit details
    Browse the repository at this point in the history
  6. Address review comments.

    Centril committed Jun 24, 2019
    Configuration menu
    Copy the full SHA
    5eaedda View commit details
    Browse the repository at this point in the history
  7. --bless you.

    Centril committed Jun 24, 2019
    Configuration menu
    Copy the full SHA
    a60bbb0 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2019

  1. Add some #[inline] attributes

    Zoxc committed Jun 25, 2019
    Configuration menu
    Copy the full SHA
    c877989 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    11221d1 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2019

  1. Configuration menu
    Copy the full SHA
    93077f3 View commit details
    Browse the repository at this point in the history
  2. Update miri

    JohnTitor committed Jun 26, 2019
    Configuration menu
    Copy the full SHA
    742e851 View commit details
    Browse the repository at this point in the history
  3. Avoid mem::uninitialized() in std::sys::unix

    For `libc` types that will be initialized in FFI calls, we can just use
    `MaybeUninit` and then pass around raw pointers.
    
    For `sun_path_offset()`, which really wants `offset_of`, all callers
    have a real `sockaddr_un` available, so we can use that reference.
    cuviper committed Jun 26, 2019
    Configuration menu
    Copy the full SHA
    3ba1f39 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b533aff View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2019

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

Commits on Jun 28, 2019

  1. doc(libcore) Fix CS

    A small PR to fix a small CS typo in `iter/traits/collect.rs`.
    Hywan committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    643ae63 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#61199 - ollie27:rustdoc_cfg_test, r=QuietMi…

    …sdreavus
    
    Revert "Set test flag when rustdoc is running with --test option"
    
    Reverts rust-lang#59940.
    
    It caused doctests in this repository to no longer be tested including all of the core crate.
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    f05df06 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#61755 - Centril:compiletest-force-check, r=…

    …petrochenkov
    
    Add `--pass $mode` to compiletest through `./x.py`
    
    Adds a flag `--pass $mode` to compiletest, which is exposed through `./x.py`.
    
    When `--pass $mode` is passed, `{check,build,compile,run}-pass` tests will be forced to run under the given `$mode` unless the directive `// ignore-pass` exists in the test file.
    
    The modes are explained in rust-lang#61778:
    - `check` has the same effect as `cargo check`
    - `build` or `compile` have the same effect as `cargo build`
    - `run` has the same effect as `cargo run`
    
    On my machine, `./x.py -i test src/test/run-pass --stage 1 --pass check` takes 38 seconds whereas it takes 2 min 7 seconds without `--pass check`.
    
    cc rust-lang#61712
    
    r? @petrochenkov
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    e775a5d View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#62023 - RalfJung:miri-toolstate, r=kennytm

    publish_toolstate: don't use 'new' from inside the loop
    
    I think I made a mistake in rust-lang#61938 by using `new` outside the inner loop. This PR fixes that.
    
    However, no issue got created at all for rust-lang#62003 (comment), and I don't know why that is.   The script should be [triggered by Traivs](https://github.com/rust-lang/rust/blob/56a12b2ad058f22f1ef090713df15598525ba4a4/.travis.yml#L240), and I can find no trace of that in [the build log](https://travis-ci.com/rust-lang/rust/jobs/209880042).
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    14a63fa View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#62104 - Zoxc:query-info, r=eddyb

    Inform the query system about properties of queries at compile time
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    59548f4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    18be48b View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#62150 - alex:mem-uninit-refactor, r=RalfJun…

    …g,oli-obk,Centril
    
    Implement mem::{zeroed,uninitialized} in terms of MaybeUninit.
    
    Refs rust-lang#62061
    
    r? @oli-obk
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    00cd934 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#62163 - cuviper:unix-uninit, r=RalfJung

    Avoid mem::uninitialized() in std::sys::unix
    
    For `libc` types that will be initialized in FFI calls, we can just use
    `MaybeUninit` and then pass around raw pointers.
    
    For `sun_path_offset()`, which really wants `offset_of`, all callers
    have a real `sockaddr_un` available, so we can use that reference.
    
    r? @RalfJung
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    eac6d96 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#62204 - Hywan:patch-2, r=rkruppe

    doc(libcore) Fix CS
    
    A small PR to fix a small CS typo in `iter/traits/collect.rs`.
    Centril committed Jun 28, 2019
    Configuration menu
    Copy the full SHA
    3494fa9 View commit details
    Browse the repository at this point in the history