Browse Source

Don't skip tests that are passing now

pull/901/head
Nikita Tsukanov 9 years ago
parent
commit
46de034f98
  1. 6
      tests/Avalonia.RenderTests/Controls/BorderTests.cs
  2. 11
      tests/Avalonia.RenderTests/Shapes/PathTests.cs
  3. 4
      tests/Avalonia.RenderTests/Shapes/PolygonTests.cs
  4. 4
      tests/Avalonia.RenderTests/Shapes/PolylineTests.cs

6
tests/Avalonia.RenderTests/Controls/BorderTests.cs

@ -181,8 +181,6 @@ namespace Avalonia.Direct2D1.RenderTests.Controls
#if AVALONIA_CAIRO
[Fact(Skip = "Font scaling currently broken on cairo")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for new FormattedText")]
#else
[Fact]
#endif
@ -338,8 +336,6 @@ namespace Avalonia.Direct2D1.RenderTests.Controls
#if AVALONIA_CAIRO
[Fact(Skip = "Font scaling currently broken on cairo")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for new FormattedText")]
#else
[Fact]
#endif
@ -371,8 +367,6 @@ namespace Avalonia.Direct2D1.RenderTests.Controls
#if AVALONIA_CAIRO
[Fact(Skip = "Font scaling currently broken on cairo")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for new FormattedText")]
#else
[Fact]
#endif

11
tests/Avalonia.RenderTests/Shapes/PathTests.cs

@ -299,11 +299,7 @@ namespace Avalonia.Direct2D1.RenderTests.Shapes
RenderToFile(target);
CompareImages();
}
#if AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for https://github.com/mono/SkiaSharp/pull/63")]
#else
[Fact]
#endif
public void Path_Tick_Scaled()
{
Decorator target = new Decorator
@ -326,11 +322,6 @@ namespace Avalonia.Direct2D1.RenderTests.Shapes
CompareImages();
}
#if AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for https://github.com/mono/SkiaSharp/pull/63")]
#else
[Fact]
#endif
public void Path_Tick_Scaled_Stroke_8px()
{
Decorator target = new Decorator

4
tests/Avalonia.RenderTests/Shapes/PolygonTests.cs

@ -23,8 +23,6 @@ namespace Avalonia.Direct2D1.RenderTests.Shapes
#if AVALONIA_CAIRO
[Fact(Skip = "Caused by cairo bug")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for https://github.com/mono/SkiaSharp/pull/63")]
#else
[Fact]
#endif
@ -51,8 +49,6 @@ namespace Avalonia.Direct2D1.RenderTests.Shapes
#if AVALONIA_CAIRO
[Fact(Skip = "Caused by cairo bug")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for https://github.com/mono/SkiaSharp/pull/63")]
#else
[Fact]
#endif

4
tests/Avalonia.RenderTests/Shapes/PolylineTests.cs

@ -23,8 +23,6 @@ namespace Avalonia.Direct2D1.RenderTests.Shapes
#if AVALONIA_CAIRO
[Fact(Skip = "Caused by cairo bug")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for https://github.com/mono/SkiaSharp/pull/63")]
#else
[Fact]
#endif
@ -53,8 +51,6 @@ namespace Avalonia.Direct2D1.RenderTests.Shapes
#if AVALONIA_CAIRO
[Fact(Skip = "Caused by cairo bug")]
#elif AVALONIA_SKIA_SKIP_FAIL
[Fact(Skip = "Waiting for https://github.com/mono/SkiaSharp/pull/63")]
#else
[Fact]
#endif

Loading…
Cancel
Save