Skip to content

Commit

Permalink
Revert the un-skip of 3 emoji rendering tests
Browse files Browse the repository at this point in the history
They randomly fails. We suspect we need a more recent version of the cairo/harfbuzz/freetype libs stack.
  • Loading branch information
tinchodias committed May 4, 2024
1 parent 5c3daba commit ce40b64
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Alexandrie-Canvas-Tests/AeCanvasTest.class.st
Expand Up @@ -301,6 +301,9 @@ AeCanvasTest >> renderCurvedFigure [
AeCanvasTest >> renderEmoji [

| fontHeight aeCanvas cairoScaledFont cairoGlyphsArray |

self skip. "Randomly fails. We suspect we need a more recent version of cairo (it introduced improvements in this area)."

fontHeight := 25.
aeCanvas := AeCanvas extent: fontHeight * 1.3 asPoint.
aeCanvas clear: Color paleYellow.
Expand Down Expand Up @@ -475,6 +478,9 @@ AeCanvasTest >> renderOpenFigure [
AeCanvasTest >> renderZWJEmojiWithHarfbuzz [

| fontHeight aeCanvas cairoScaledFont cairoGlyphsArray |

self skip. "Randomly fails. We suspect we need a more recent version of cairo (it introduced improvements in this area)."

fontHeight := 24.
aeCanvas := AeCanvas extent: 200 @ (fontHeight * 2).
aeCanvas clear: Color white.
Expand Down Expand Up @@ -507,6 +513,9 @@ AeCanvasTest >> renderZWJEmojiWithHarfbuzz [
AeCanvasTest >> renderZWJEmojiWithoutHarfbuzz [

| fontHeight aeCanvas cairoScaledFont cairoGlyphsArray |

self skip. "Randomly fails. We suspect we need a more recent version of cairo (it introduced improvements in this area)."

fontHeight := 21.
aeCanvas := AeCanvas extent: (fontHeight * 5.5) @ (fontHeight * 1.2).
aeCanvas clear: Color white.
Expand Down

0 comments on commit ce40b64

Please sign in to comment.