Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/xharness
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6eee948
Choose a base ref
...
head repository: dotnet/xharness
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d34249
Choose a head ref
  • 4 commits
  • 6 files changed
  • 3 contributors

Commits on Feb 7, 2022

  1. ThreadlessXunitTestRunner: Escape newlines in test result lines (#817)

    `ThreadlessXunitTestRunner` writes lines like:
    
        `[PASS] foo.testname(testargs)`
    
    to the console, which gets parsed by `WasmTestMessageProcessor`. But if
    the list of arguments contains a new line(eg. in data for
    `System.Text.RegularExpressions` tests), then the output line gets written
    as multiple lines to the console. And that results in the output looking
    like:
    
    ```
    [02:41:04] info: abc, beginning: 0, length: 5, expectedSuccess: True, expectedValue: "a\nabc")
    [02:41:04] info: abc, beginning: 0, length: 5, expectedSuccess: True, expectedValue: "a\nabc")
    ...
    ```
    
    Each of those lines being the last part of the `[PASS] foo.testname(someargs, "\nabc, ..")`.
    
    Instead, we escape the new line chars.
    
    Partially fixes #816
    radical authored Feb 7, 2022
    Configuration menu
    Copy the full SHA
    eb3fecb View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2022

  1. [main] Update dependencies from dotnet/arcade (#814)

    [main] Update dependencies from dotnet/arcade
    
    
     - Bump Arcade to latest main
    dotnet-maestro[bot] authored Feb 8, 2022
    Configuration menu
    Copy the full SHA
    02a129d View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2022

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

Commits on Feb 10, 2022

  1. Update dependencies from https://github.com/dotnet/arcade build 20220…

    …209.1 (#820)
    
    [main] Update dependencies from dotnet/arcade
    dotnet-maestro[bot] authored Feb 10, 2022
    Configuration menu
    Copy the full SHA
    1d34249 View commit details
    Browse the repository at this point in the history
Loading