Skip to content
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