Browse Source

Disable trie generation

pull/8368/head
Benedikt Stebner 4 years ago
parent
commit
608238211b
  1. 2
      tests/Avalonia.Base.UnitTests/Media/TextFormatting/GraphemeBreakClassTrieGeneratorTests.cs
  2. 2
      tests/Avalonia.Base.UnitTests/Media/TextFormatting/UnicodeDataGeneratorTests.cs

2
tests/Avalonia.Base.UnitTests/Media/TextFormatting/GraphemeBreakClassTrieGeneratorTests.cs

@ -44,7 +44,7 @@ namespace Avalonia.Base.UnitTests.Media.TextFormatting
Assert.Equal(10, count);
}
[Fact(/*Skip = "Only run when we update the trie."*/)]
[Fact(Skip = "Only run when we update the trie.")]
public void Should_Generate_Trie()
{
GraphemeBreakClassTrieGenerator.Execute();

2
tests/Avalonia.Base.UnitTests/Media/TextFormatting/UnicodeDataGeneratorTests.cs

@ -10,7 +10,7 @@ namespace Avalonia.Base.UnitTests.Media.TextFormatting
/// This test is used to generate all Unicode related types.
/// We only need to run this when the Unicode spec changes.
/// </summary>
[Fact(/*Skip = "Only run when the Unicode spec changes."*/)]
[Fact(Skip = "Only run when the Unicode spec changes.")]
public void Should_Generate_Data()
{
if (!Directory.Exists("Generated"))

Loading…
Cancel
Save