Browse Source

Disable benchmark tests

pull/336/head
Anton Firsov 9 years ago
committed by GitHub
parent
commit
deb6a8bbf1
  1. 10
      tests/ImageSharp.Tests/Formats/Jpg/JpegProfilingBenchmarks.cs

10
tests/ImageSharp.Tests/Formats/Jpg/JpegProfilingBenchmarks.cs

@ -34,15 +34,15 @@ namespace SixLabors.ImageSharp.Tests.Formats.Jpg
TestImages.Jpeg.Baseline.Jpeg444,
};
[Theory] // Benchmark, enable manually
[MemberData(nameof(DecodeJpegData))]
// [Theory] // Benchmark, enable manually
// [MemberData(nameof(DecodeJpegData))]
public void DecodeJpeg_Original(string fileName)
{
this.DecodeJpegBenchmarkImpl(fileName, new OrigJpegDecoder());
}
[Theory] // Benchmark, enable manually
[MemberData(nameof(DecodeJpegData))]
// [Theory] // Benchmark, enable manually
// [MemberData(nameof(DecodeJpegData))]
public void DecodeJpeg_PdfJs(string fileName)
{
this.DecodeJpegBenchmarkImpl(fileName, new PdfJsJpegDecoder());
@ -106,4 +106,4 @@ namespace SixLabors.ImageSharp.Tests.Formats.Jpg
}
}
}
}

Loading…
Cancel
Save