-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Fix some compression tests #27216
Fix some compression tests #27216
Conversation
|
@dotnet-bot help |
|
Welcome to the dotnet/corefx Repository The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR The following commands are valid for all PRs and repositories. Click to expand
The following jobs are launched by default for each PR against dotnet/corefx:master. Click to expand
The following optional jobs are available in PRs against dotnet/corefx:master. Click to expand
Have a nice day! |
|
Hmm, looks like dotnet-bot doesn't want to help me with performance run triggers. |
|
@dotnet-bot test Windows_NT perf |
|
Welcome to the dotnet/corefx Repository The following is a list of valid commands on this PR. To invoke a command, comment the indicated phrase on the PR The following commands are valid for all PRs and repositories. Click to expand
The following jobs are launched by default for each PR against dotnet/corefx:master. Click to expand
The following optional jobs are available in PRs against dotnet/corefx:master. Click to expand
Have a nice day! |
Do we understand the source if the flakiness? |
Yeah, I tried to write a test that would work for a general compression stream when you dispose with an unfinished WriteAsync, but the behaviors in BrotliStream and DeflateStream are different enough that my test works for BrotliStream but has a race condition in DeflateStream due to the WriteOutput/SetInput/WriteOutput structure whereas BrotliStream is just SetInput&WriteOutput in one step. |
|
Brotli performance tests now run on the jenkins machine in 7 minutes. |
…_tests Fix some compression tests Commit migrated from dotnet/corefx@cfe3ac1
resolves https://github.com/dotnet/corefx/issues/26089
resolves https://github.com/dotnet/corefx/issues/26566