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

disable these tests on linux #2298

Merged
merged 1 commit into from
Jun 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
using Moq;

[TestClass]
[TestCategory("WindowsOnly")] // these tests are flaky on linux builds.
public class AdaptiveSamplingTelemetryProcessorTest
{
[TestMethod]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ public void ThrowsArgumentOutOfRangeExceptionWhenNewValueIsLessThanMinimum()

// TODO: Test that TelemetryBuffer.Send synchronously clears the buffer to prevent item # 501 from flushing again
[TestClass]
[TestCategory("WindowsOnly")] // these tests are flaky on linux builds.
public class Send : TelemetryBufferTest
{
[TestMethod]
Expand Down Expand Up @@ -161,6 +162,7 @@ public void TelemetryBufferDoesNotGrowBeyondMaxBacklogSize()
}

[TestMethod]

public void FlushesBufferWhenNumberOfTelemetryItemsReachesMax()
{
var bufferFlushed = new ManualResetEventSlim();
Expand Down