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 18 pull requests #50611

Merged
merged 54 commits into from
May 11, 2018
Merged

Rollup of 18 pull requests #50611

merged 54 commits into from
May 11, 2018

Commits on Apr 30, 2018

  1. Configuration menu
    Copy the full SHA
    5ab4c81 View commit details
    Browse the repository at this point in the history
  2. Clean up the other Slice*Inclusive impls for str

    A previous PR fixed one method that was legitimately buggy;
    this cleans up the rest to be less diverse, mirroring the
    corresponding impls on [T] to the greatest extent possible
    without introducing any unnecessary UTF-8 boundary checks at 0.
    ExpHP committed Apr 30, 2018
    Configuration menu
    Copy the full SHA
    6b749b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4fab167 View commit details
    Browse the repository at this point in the history
  4. collect str SliceIndex tests into a mod

    GitHub users: I think you can add ?w=1 to the url
    for a vastly cleaner whitespace-ignoring diff
    ExpHP committed Apr 30, 2018
    Configuration menu
    Copy the full SHA
    0842dc6 View commit details
    Browse the repository at this point in the history
  5. flesh out tests for SliceIndex

    m*n lines of implementation deserves m*n lines of tests
    ExpHP committed Apr 30, 2018
    Configuration menu
    Copy the full SHA
    ce66f5d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    02b3da1 View commit details
    Browse the repository at this point in the history
  7. revise macro in slice tests

    ExpHP committed Apr 30, 2018
    Configuration menu
    Copy the full SHA
    030aa9b View commit details
    Browse the repository at this point in the history
  8. revise test gen macro for str

    ExpHP committed Apr 30, 2018
    Configuration menu
    Copy the full SHA
    f1d7b45 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2018

  1. Configuration menu
    Copy the full SHA
    b0fcb5f View commit details
    Browse the repository at this point in the history
  2. Tidy up the code

    gavento committed May 2, 2018
    Configuration menu
    Copy the full SHA
    e09d9ec View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a66a011 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0617b92 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    571337b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a43171a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9073c89 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2018

  1. Configuration menu
    Copy the full SHA
    000d3c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea49428 View commit details
    Browse the repository at this point in the history
  3. Fix comment

    wesleywiser committed May 8, 2018
    Configuration menu
    Copy the full SHA
    868d2a1 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2018

  1. Fix update-references for tests within subdirectories.

    Fixes rust-lang#50438.
    
    I'll make this more robust later for rust-lang#49815.
    ehuss committed May 9, 2018
    Configuration menu
    Copy the full SHA
    5128aff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31d2012 View commit details
    Browse the repository at this point in the history
  3. Inline Span methods.

    Because they are simple and hot.
    
    This change speeds up some incremental runs of a few rustc-perf
    benchmarks, the best by 3%.
    nnethercote committed May 9, 2018
    Configuration menu
    Copy the full SHA
    77c40f8 View commit details
    Browse the repository at this point in the history
  4. Use SmallVec for DepNodeIndex within dep_graph.

    This avoids a decent number of allocations, enough to speed up
    incremental runs of many rustc-benchmarks, the best by 2%.
    nnethercote committed May 9, 2018
    Configuration menu
    Copy the full SHA
    78262e7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0ba1c10 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b8b957d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a981089 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    23aa483 View commit details
    Browse the repository at this point in the history
  9. std: Avoid ptr::copy if unnecessary in vec::Drain

    This commit is spawned out of a performance regression investigation in rust-lang#50496.
    In tracking down this regression it turned out that the `expand_statements`
    function in the compiler was taking quite a long time. Further investigation
    showed two key properties:
    
    * The function was "fast" on glibc 2.24 and slow on glibc 2.23
    * The hottest function was memmove from glibc
    
    Combined together it looked like glibc gained an optimization to the memmove
    function in 2.24. Ideally we don't want to rely on this optimization, so I
    wanted to dig further to see what was happening.
    
    The hottest part of `expand_statements` was `Drop for Drain` in the call to
    `splice` where we insert new statements into the original vector. This *should*
    be a cheap operation because we're draining and replacing iterators of the exact
    same length, but under the hood memmove was being called a lot, causing a
    slowdown on glibc 2.23.
    
    It turns out that at least one of the optimizations in glibc 2.24 was that
    `memmove` where the src/dst are equal becomes much faster. [This program][prog]
    executes in ~2.5s against glibc 2.23 and ~0.3s against glibc 2.24, exhibiting
    how glibc 2.24 is optimizing `memmove` if the src/dst are equal.
    
    And all that brings us to what this commit itself is doing. The change here is
    purely to `Drop for Drain` to avoid the call to `ptr::copy` if the region being
    copied doesn't actually need to be copied. For normal usage of just `Drain`
    itself this check isn't really necessary, but because `Splice` internally
    contains `Drain` this provides a nice speed boost on glibc 2.23. Overall this
    should fix the regression seen in rust-lang#50496 on glibc 2.23 and also fix the
    regression on Windows where `memmove` looks to not have this optimization.
    
    Note that the way `splice` was called in `expand_statements` would cause a
    quadratic number of elements to be copied via `memmove` which is likely why the
    tuple-stress benchmark showed such a severe regression.
    
    Closes rust-lang#50496
    
    [prog]: https://gist.github.com/alexcrichton/c05bc51c6771bba5ae5b57561a6c1cd3
    alexcrichton committed May 9, 2018
    Configuration menu
    Copy the full SHA
    254b601 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4537025 View commit details
    Browse the repository at this point in the history
  11. move See also links to top

    ExpHP committed May 9, 2018
    Configuration menu
    Copy the full SHA
    8010604 View commit details
    Browse the repository at this point in the history
  12. make std::str link into See also link

    also make a drive-by typo fix
    ExpHP committed May 9, 2018
    Configuration menu
    Copy the full SHA
    b8eb91a View commit details
    Browse the repository at this point in the history

Commits on May 10, 2018

  1. Restore RawVec::reserve* documentation

    When the RawVec::try_reserve* methods were added, they took the place of
    the ::reserve* methods in the source file, and new ::reserve* methods
    wrapping the new try_reserve* methods were created. But the
    documentation didn't move along, such that:
     - reserve_* methods are barely documented.
     - try_reserve_* methods have unmodified documentation from reserve_*,
       such that their documentation indicate they are panicking/aborting.
    
    This moves the documentation back to the right methods, with a
    placeholder documentation for the try_reserve* methods.
    glandium committed May 10, 2018
    Configuration menu
    Copy the full SHA
    9c4e5b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae3feff View commit details
    Browse the repository at this point in the history
  3. Retry when downloading the Docker cache.

    Prevent spuriously needing to rebuild the docker image when the network
    was down.
    
    Also, adjusted the retry function to insert a sleep between retries,
    because retrying immediately will often just hit the same issue.
    kennytm committed May 10, 2018
    Configuration menu
    Copy the full SHA
    7def3f0 View commit details
    Browse the repository at this point in the history
  4. Pull in a wasm fix from LLVM upstream

    This pulls in a fix for https://bugs.llvm.org/show_bug.cgi?id=36564 which has
    already landed in upstream LLVM and should...
    
    Closes rust-lang-nursery/rust-wasm#168
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    12446dd View commit details
    Browse the repository at this point in the history
  5. Fix tuple struct field spans

    estebank committed May 10, 2018
    Configuration menu
    Copy the full SHA
    85f5738 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#49423 - gavento:gavento-dev, r=nikomatsakis

    Extend tests for RFC1598 (GAT)
    
    More GAT tests, namely some usage for `Iterable` and `StreamingIterator`, shadowing (lifetimes and type params), `Collection<T>` and `CollectionFamily` from [the series](http://smallcultfollowing.com/babysteps/blog/2016/11/03/associated-type-constructors-part-2-family-traits/) with default associated types. Tracking issue: rust-lang#44265
    
    r? @nikomatsakis
    
    Wrong GAT argument numbers / kinds and default values are next.
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    ecd9898 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#50010 - ExpHP:slice-bounds, r=alexcrichton

    Give SliceIndex impls a test suite of girth befitting the implementation (and fix a UTF8 boundary check)
    
    So one day I was writing something in my codebase that basically amounted to `impl SliceIndex for (Bound<usize>, Bound<usize>)`, and I said to myself:
    
    *Boy, gee, golly!  I never realized bounds checking was so tricky!*
    
    At some point when I had around 60 lines of tests for it, I decided to go see how the standard library does it to see if I missed any edge cases. ...That's when I discovered that libcore only had about 40 lines of tests for slicing altogether, and none of them even used `..=`.
    
    ---
    
    This PR includes:
    
    * **Literally the first appearance of the word `get_unchecked_mut` in any directory named `test` or `tests`.**
    * Likewise the first appearance of `get_mut` used with _any type of range argument_ in these directories.
    * Tests for the panics on overflow with `..=`.
        * I wanted to test on `[(); usize::MAX]` as well but that takes linear time in debug mode </3
    * A horrible and ugly test-generating macro for the `should_panic` tests that increases the DRYness by a single order of magnitude (which IMO wasn't enough, but I didn't want to go any further and risk making the tests inaccessible to next guy).
    * Same stuff for str!
        * Actually, the existing `str` tests were pretty good. I just helped filled in the holes.
    * [A fix for the bug it caught](rust-lang#50002).  (only one ~~sadly~~)
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    cff1a26 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#50447 - ehuss:fix-update-references, r=alex…

    …crichton
    
    Fix update-references for tests within subdirectories.
    
    Fixes rust-lang#50438.
    
    I'll make this more robust later for rust-lang#49815.
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    7bd4fda View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#50514 - alexcrichton:update-llvm, r=kennytm

    Pull in a wasm fix from LLVM upstream
    
    This pulls in a fix for https://bugs.llvm.org/show_bug.cgi?id=36564 which has
    already landed in upstream LLVM and should...
    
    Closes rust-lang-nursery/rust-wasm#168
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    4c4396c View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#50524 - wesleywiser:immutable_prev_work_pro…

    …ducts, r=michaelwoerister
    
    Make DepGraph::previous_work_products immutable
    
    Fixes rust-lang#50501
    
    r? @michaelwoerister
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    bb130ce View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#50532 - michaelwoerister:lockless-cnum-map,…

    … r=Zoxc
    
    Don't use Lock for heavily accessed CrateMetadata::cnum_map.
    
    The `cnum_map` in `CrateMetadata` is used for two things:
    1. to map `CrateNums` between crates (used a lot during decoding)
    2. to construct the (reverse) post order of the crate graph
    
    For the second case, we need to modify the map after the fact, which is why the map is wrapped in a `Lock`. This is bad for the first case, which does not need the modification and does lots of small reads from the map.
    
    This PR splits case (2) out into a separate `dependencies` field. This allows to make the `cnum_map` immutable (and shifts the interior mutability to a less busy data structure).
    
    Fixes rust-lang#50502
    
    r? @Zoxc
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    296f952 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#50538 - michaelwoerister:atomic-cnums, r=Zoxc

     Make CrateNum allocation more thread-safe.
    
    This PR makes sure that we can't have race conditions when assigning CrateNums. It's a slight improvement but a larger refactoring of the CrateStore/CrateLoader infrastructure would be good, I think.
    
    r? @Zoxc
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    4199a6c View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#50564 - nnethercote:inline-Span-methods, r=…

    …petrochenkov
    
    Inline `Span` methods.
    
    Because they are simple and hot.
    
    This change speeds up some incremental runs of a few rustc-perf
    benchmarks, the best by 3%.
    
    Here are the ones with a speedup of at least 1%:
    ```
    coercions
            avg: -1.1%      min: -3.4%      max: -0.2%
    html5ever-opt
            avg: -0.8%      min: -1.7%      max: -0.2%
    clap-rs-check
            avg: -0.3%      min: -1.4%      max: 0.7%
    html5ever
            avg: -0.7%      min: -1.2%      max: -0.4%
    html5ever-check
            avg: -0.9%      min: -1.1%      max: -0.8%
    clap-rs
            avg: -0.4%      min: -1.1%      max: -0.1%
    crates.io-check
            avg: -0.8%      min: -1.0%      max: -0.6%
    serde-opt
            avg: -0.6%      min: -1.0%      max: -0.3%
    ```
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    a77ba86 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#50565 - nnethercote:try_mark_green, r=micha…

    …elwoerister
    
    Use SmallVec for DepNodeIndex within dep_graph.
    
    This avoids a decent number of allocations, enough to speed up
    incremental runs of many rustc-benchmarks, the best by 2%.
    
    Here are the rustc-perf benchmarks that showed an improvement of at least 1% on one run:
    ```
    unused-warnings-check
    	avg: -1.7%	min: -2.4%	max: 0.0%
    unused-warnings-opt
    	avg: -1.4%	min: -2.0%	max: 0.0%
    unused-warnings
    	avg: -1.4%	min: -2.0%	max: -0.0%
    tokio-webpush-simple-check
    	avg: -1.0%	min: -1.7%	max: 0.0%
    futures-opt
    	avg: -0.9%	min: -1.6%	max: 0.0%
    encoding
    	avg: -1.2%	min: -1.6%	max: -0.6%
    encoding-check
    	avg: -0.9%	min: -1.6%	max: 0.0%
    encoding-opt
    	avg: -0.8%	min: -1.6%	max: -0.1%
    futures
    	avg: -0.9%	min: -1.5%	max: 0.0%
    futures-check
    	avg: -0.9%	min: -1.5%	max: 0.1%
    regression-31157-check
    	avg: -0.9%	min: -1.5%	max: 0.0%
    regex
    	avg: -0.6%	min: -1.4%	max: 0.0%
    regression-31157-opt
    	avg: -0.5%	min: -1.4%	max: 0.1%
    regression-31157
    	avg: -0.7%	min: -1.4%	max: 0.2%
    regex-opt
    	avg: -0.6%	min: -1.4%	max: 0.1%
    hyper-check
    	avg: -0.8%	min: -1.4%	max: -0.1%
    regex-check
    	avg: -1.0%	min: -1.4%	max: 0.0%
    hyper-opt
    	avg: -0.7%	min: -1.4%	max: -0.1%
    hyper
    	avg: -0.7%	min: -1.3%	max: 0.1%
    piston-image-opt
    	avg: -0.4%	min: -1.3%	max: 0.0%
    tokio-webpush-simple-opt
    	avg: -0.3%	min: -1.3%	max: 0.0%
    piston-image-check
    	avg: -0.5%	min: -1.3%	max: -0.0%
    syn-opt
    	avg: -0.5%	min: -1.3%	max: 0.0%
    clap-rs-check
    	avg: -0.3%	min: -1.3%	max: 0.2%
    piston-image
    	avg: -0.5%	min: -1.2%	max: 0.1%
    syn
    	avg: -0.5%	min: -1.2%	max: 0.1%
    syn-check
    	avg: -0.6%	min: -1.2%	max: -0.1%
    issue-46449-opt
    	avg: -0.4%	min: -1.2%	max: -0.1%
    parser-check
    	avg: -0.7%	min: -1.2%	max: 0.1%
    issue-46449
    	avg: -0.5%	min: -1.2%	max: -0.0%
    ```
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    e23ec4b View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#50569 - michaelwoerister:cross-lang-lto-2, …

    …r=alexcrichton
    
    Allow for specifying a linker plugin for cross-language LTO
    
    This PR makes the `-Zcross-lang-lto` flag optionally take the path to the `LLVMgold.so` linker plugin. If this path is specified, `rustc` will invoke the linker with the correct arguments (i.e. `-plugin` and various `-plugin-opt`s).
    
    This can be used to ergonomically enable cross-language LTO for Rust programs with C/C++ dependencies:
    ```
    clang -O2 test.c -otest.o -c -flto=thin
    llvm-ar -rv libxxx.a test.o
    rustc -L. main.rs -Zcross-lang-lto=/usr/lib64/LLVMgold.so -O -Clink-arg=-fuse-ld=gold
    ```
    
    - Note that in theory this should work with Gold, LLD, and newer versions of binutils' LD but on my current system I could only get it to work with Gold.
    - Also note that this will work best if the Clang version and Rust's LLVM version are close enough. Clang 6.0 works well with the current nightly.
    
    r? @alexcrichton
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    dd40277 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    be6fab8 View commit details
    Browse the repository at this point in the history
  17. Rollup merge of rust-lang#50574 - s3bk:range_inclusive_into_inner, r=…

    …SimonSapin
    
    add fn `into_inner(self) -> (Idx, Idx)` to RangeInclusive (rust-lang#49022)
    
    adds `into_inner(self) -> (Idx, Idx)` to RangeInclusive
    rust-lang#49022 (comment)
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    445e53e View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#50575 - alexcrichton:faster-drain-drop, r=s…

    …fackler
    
    std: Avoid `ptr::copy` if unnecessary in `vec::Drain`
    
    This commit is spawned out of a performance regression investigation in rust-lang#50496.
    In tracking down this regression it turned out that the `expand_statements`
    function in the compiler was taking quite a long time. Further investigation
    showed two key properties:
    
    * The function was "fast" on glibc 2.24 and slow on glibc 2.23
    * The hottest function was memmove from glibc
    
    Combined together it looked like glibc gained an optimization to the memmove
    function in 2.24. Ideally we don't want to rely on this optimization, so I
    wanted to dig further to see what was happening.
    
    The hottest part of `expand_statements` was `Drop for Drain` in the call to
    `splice` where we insert new statements into the original vector. This *should*
    be a cheap operation because we're draining and replacing iterators of the exact
    same length, but under the hood memmove was being called a lot, causing a
    slowdown on glibc 2.23.
    
    It turns out that at least one of the optimizations in glibc 2.24 was that
    `memmove` where the src/dst are equal becomes much faster. [This program][prog]
    executes in ~2.5s against glibc 2.23 and ~0.3s against glibc 2.24, exhibiting
    how glibc 2.24 is optimizing `memmove` if the src/dst are equal.
    
    And all that brings us to what this commit itself is doing. The change here is
    purely to `Drop for Drain` to avoid the call to `ptr::copy` if the region being
    copied doesn't actually need to be copied. For normal usage of just `Drain`
    itself this check isn't really necessary, but because `Splice` internally
    contains `Drain` this provides a nice speed boost on glibc 2.23. Overall this
    should fix the regression seen in rust-lang#50496 on glibc 2.23 and also fix the
    regression on Windows where `memmove` looks to not have this optimization.
    
    Note that the way `splice` was called in `expand_statements` would cause a
    quadratic number of elements to be copied via `memmove` which is likely why the
    tuple-stress benchmark showed such a severe regression.
    
    Closes rust-lang#50496
    
    [prog]: https://gist.github.com/alexcrichton/c05bc51c6771bba5ae5b57561a6c1cd3
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    44f8b4d View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    c798cbb View commit details
    Browse the repository at this point in the history
  20. Rollup merge of rust-lang#50590 - estebank:off-by-one, r=nikomatsakis

    Fix tuple struct field spans
    
    Fix rust-lang#50578. Will have a merge conflict with rust-lang#50536.
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    1f1c65d View commit details
    Browse the repository at this point in the history
  21. Rollup merge of rust-lang#50591 - glandium:cleanup, r=dtolnay

    Restore RawVec::reserve* documentation
    
    When the RawVec::try_reserve* methods were added, they took the place of
    the ::reserve* methods in the source file, and new ::reserve* methods
    wrapping the new try_reserve* methods were created. But the
    documentation didn't move along, such that:
     - reserve_* methods are barely documented.
     - try_reserve_* methods have unmodified documentation from reserve_*,
       such that their documentation indicate they are panicking/aborting.
    
    This moves the documentation back to the right methods, with a
    placeholder documentation for the try_reserve* methods.
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    8b5f692 View commit details
    Browse the repository at this point in the history
  22. Rollup merge of rust-lang#50598 - whitfin:unnecessary-mut-borrow, r=m…

    …ichaelwoerister
    
    Remove unnecessary mutable borrow and resizing in DepGraph::serialize
    
    I might be mistaken, but I noticed this whilst in this file for something else. It appears that this mutable borrow is unnecessary and since it's locking it should be removed. The resizing looks redundant since nothing additional is added to the fingerprints in this function, so that can also be removed.
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    74e731f View commit details
    Browse the repository at this point in the history
  23. Rollup merge of rust-lang#50606 - kennytm:retry-docker-cache, r=alexc…

    …richton
    
    Retry when downloading the Docker cache.
    
    As a safety measure, prevent spuriously needing to rebuild the docker image in case the network was reset while downloading.
    
    Also, adjusted the retry function to insert a sleep between retries, because retrying immediately will often just hit the same issue.
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    694ba9c View commit details
    Browse the repository at this point in the history
  24. Skip a memory-hungry test that OOMs

    Attempting to fix https://travis-ci.org/rust-lang/rust/jobs/377407894 via some
    selective ignoring tests
    alexcrichton committed May 10, 2018
    Configuration menu
    Copy the full SHA
    2c5d13d View commit details
    Browse the repository at this point in the history