enable RightToLeft test on apple

This commit is contained in:
nick black 2021-12-04 00:18:21 -06:00
parent 4513d36978
commit c49d3b1e02

View File

@ -781,12 +781,10 @@ TEST_CASE("Plane") {
CHECK(0 < ncplane_putstr(n_, "I write English + מילים בעברית together."));
CHECK(0 == ncplane_cursor_move_yx(n_, 5, 5));
CHECK(0 < ncplane_putstr(n_, "|🔥|I have not yet ־ begun to hack|🔥|"));
#ifndef __APPLE__ // FIXME
CHECK(0 == ncplane_cursor_move_yx(n_, 7, 5));
CHECK(0 < ncplane_putstr(n_, "㉀㉁㉂㉃㉄㉅㉆㉇㉈㉉㉊㉋㉌㉍㉎㉏㉐"));
CHECK(0 == ncplane_cursor_move_yx(n_, 8, 5));
CHECK(0 < ncplane_putstr(n_, "㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜㉝㉞㉟"));
#endif
CHECK(0 == notcurses_render(nc_));
}