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 7 pull requests #64713

Closed
wants to merge 29 commits into from
Closed

Commits on Aug 7, 2019

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

Commits on Aug 8, 2019

  1. Remove Iteration order heading

    Ali Raheem committed Aug 8, 2019
    Configuration menu
    Copy the full SHA
    8068812 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2019

  1. Fix gramitcal error in read_dir example

    Ali Raheem committed Aug 15, 2019
    Configuration menu
    Copy the full SHA
    53c5046 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2019

  1. Comment out println in read_dir sorting example

    Ali Raheem committed Aug 26, 2019
    Configuration menu
    Copy the full SHA
    3c820fe View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2019

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

Commits on Sep 9, 2019

  1. Replace println statements with explanatory comments

    Ali Raheem committed Sep 9, 2019
    Configuration menu
    Copy the full SHA
    1161aeb View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2019

  1. Made a thread local storage panic message more explanatory

    (TLS is usually understood as Transport Layer Security
    outside rust-std internals)
    tomtau committed Sep 15, 2019
    Configuration menu
    Copy the full SHA
    df7789c View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2019

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

Commits on Sep 21, 2019

  1. Configuration menu
    Copy the full SHA
    983e035 View commit details
    Browse the repository at this point in the history
  2. update ui tests

    GuillaumeGomez committed Sep 21, 2019
    Configuration menu
    Copy the full SHA
    d2b873b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c16a547 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2019

  1. Configuration menu
    Copy the full SHA
    645cdca View commit details
    Browse the repository at this point in the history
  2. rename libsyntax::ext::tt to mbe

    mbe stands for macro-by-example
    matklad committed Sep 22, 2019
    Configuration menu
    Copy the full SHA
    827a5b2 View commit details
    Browse the repository at this point in the history
  3. rename tt -> mbe, part 2

    matklad committed Sep 22, 2019
    Configuration menu
    Copy the full SHA
    49f849c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e30c516 View commit details
    Browse the repository at this point in the history
  5. docstring for mbe module

    matklad committed Sep 22, 2019
    Configuration menu
    Copy the full SHA
    636b354 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9fd75f5 View commit details
    Browse the repository at this point in the history
  7. push TokenTree::parse down

    matklad committed Sep 22, 2019
    Configuration menu
    Copy the full SHA
    9835697 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    81fe857 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d91b965 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2019

  1. Delete iter-order-by.md

    KodrAus committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    4ea371e View commit details
    Browse the repository at this point in the history
  2. Remove unused dependencies

    sinkuu committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    0423c2a View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#63356 - ali-raheem:issue#63183, r=KodrAus

    Issue#63183: Add fs::read_dir() and ReadDir warning about iterator order + example
    
    As per rust-lang#63183
    
    Add warning about iterator order to read_dir and ReadDir, add example of explicitly ordering direntrys.
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    81ba34e View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#64296 - KodrAus:chore/iter_order_by, r=Centril

    Document the unstable iter_order_by library feature
    
    Tracking issue: rust-lang#64295
    
    Follow-up for: rust-lang#62205
    
    References the tracking issue and adds a page to the unstable book for the new unstable `iter_order_by` feature.
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    4d54581 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#64428 - GuillaumeGomez:error-explanation-E0…

    …524, r=Centril
    
    Error explanation e0524
    
    Part of rust-lang#61137
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    5d8a8b6 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#64481 - tomtau:fix/tls-error-message, r=Kod…

    …rAus
    
    A more explanatory thread local storage panic message
    
    Outside rust-std internals, TLS is usually understood as Transport Layer Security, so the existing message could be a bit puzzling when one has TLS sessions in `thread_local!`.
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    855bac5 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#64663 - jakoschiko:report-time, r=alexcrichton

    libtest: Add --report-time flag to print test execution time
    
    Implements the flag `--report-time` to print the execution time of each executed (successful or failed) test.
    
    Closes rust-lang#46610
    
    # Example
    
    `cargo test -- --report-time` produces the following output to stdout:
    ```
    running 6 tests
    test tests::ignore ... ignored
    test tests::noop ... ok 0.000s
    test tests::should_panic ... ok 0.000s
    test tests::panic_after_10millis ... FAILED 0.010s
    test tests::sleep_100millis ... ok 0.100s
    test tests::sleep_10secs ... ok 10.001s
    
    failures:
    
    ---- tests::panic_after_10millis stdout ----
    thread 'tests::panic_after_10millis' panicked at 'foo', src\lib.rs:31:9
    
    failures:
        tests::panic_after_10millis
    
    test result: FAILED. 4 passed; 1 failed; 1 ignored; 0 measured; 0 filtered out
    ```
    `cargo test -- --report-time -Z unstable-options --format=json` produces the following output to stdout:
    ```
    { "type": "suite", "event": "started", "test_count": 6 }
    { "type": "test", "event": "started", "name": "tests::ignore" }
    { "type": "test", "event": "started", "name": "tests::noop" }
    { "type": "test", "event": "started", "name": "tests::panic_after_10millis" }
    { "type": "test", "event": "started", "name": "tests::should_panic" }
    { "type": "test", "name": "tests::ignore", "event": "ignored" }
    { "type": "test", "event": "started", "name": "tests::sleep_100millis" }
    { "type": "test", "name": "tests::noop", "event": "ok", "exec_time": "0.000s" }
    { "type": "test", "event": "started", "name": "tests::sleep_10secs" }
    { "type": "test", "name": "tests::should_panic", "event": "ok", "exec_time": "0.000s" }
    { "type": "test", "name": "tests::panic_after_10millis", "event": "failed", "exec_time": "0.010s", "stdout": "thread 'tests::panic_after_10millis' panicked at 'foo', src\\lib.rs:31:9\n" }
    { "type": "test", "name": "tests::sleep_100millis", "event": "ok", "exec_time": "0.101s" }
    { "type": "test", "name": "tests::sleep_10secs", "event": "ok", "exec_time": "10.000s" }
    { "type": "suite", "event": "failed", "passed": 4, "failed": 1, "allowed_fail": 0, "ignored": 1, "measured": 0, "filtered_out": 0 }
    ```
    `cargo test -- --report-time --logfile foo.log` produces the following logfile:
    ```
    ignored tests::ignore
    ok tests::noop 0.000s
    ok tests::should_panic 0.000s
    failed tests::panic_after_10millis 0.010s
    ok tests::sleep_100millis 0.100s
    ok tests::sleep_10secs 10.001s
    ```
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    4ac9261 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#64689 - matklad:refactor-mbe, r=petrochenkov

    Refactor macro by example
    
    This doesn't do anything useful yet, and just moves code around and restricts visibility
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    16f8f54 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#64702 - sinkuu:deps, r=jonas-schievink

    Remove unused dependencies
    Centril committed Sep 23, 2019
    Configuration menu
    Copy the full SHA
    da42509 View commit details
    Browse the repository at this point in the history