From ef7ee24e2aee81dd97888b4533ab7eae038ce666 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Sun, 13 Dec 2009 13:36:41 -0800 Subject: [PATCH] Add regression tests for #927. --- .../markup-bidi-explicit-embedding.ly | 19 +++++++++++++++++++ .../markup-bidi-explicit-overrides.ly | 19 +++++++++++++++++++ .../regression/markup-bidi-implicit-marks.ly | 18 ++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 input/regression/markup-bidi-explicit-embedding.ly create mode 100644 input/regression/markup-bidi-explicit-overrides.ly create mode 100644 input/regression/markup-bidi-implicit-marks.ly diff --git a/input/regression/markup-bidi-explicit-embedding.ly b/input/regression/markup-bidi-explicit-embedding.ly new file mode 100644 index 0000000000..af899f40ae --- /dev/null +++ b/input/regression/markup-bidi-explicit-embedding.ly @@ -0,0 +1,19 @@ +\version "2.13.10" + +\header { + texidoc = " +The explicit directional embedding codes, U+202A and U+202B, are +supported in single-line markup strings. The embeddings must be +terminated with the pop directional formatting character, U+202C. +" +} + +\markup { + \column { + "אבה אבה \"ABC!\" אבה אבה!" + "אבה אבה \"‪ABC!‬\" אבה אבה!" + \null + "abc def \"אבה!\" ghi jkl!" + "abc def \"‫אבה!‬\" ghi jkl!" + } +} diff --git a/input/regression/markup-bidi-explicit-overrides.ly b/input/regression/markup-bidi-explicit-overrides.ly new file mode 100644 index 0000000000..c4998a7ff1 --- /dev/null +++ b/input/regression/markup-bidi-explicit-overrides.ly @@ -0,0 +1,19 @@ +\version "2.13.10" + +\header { + texidoc = " +The explicit directional override codes, U+202D and U+202E, are +supported in single-line markup strings. The overrides must be +terminated with the pop directional formatting character, U+202C. +" +} + +\markup { + \column { + "אבג דהו זחט יךכ" + "‭אבג דהו זחט יךכ‬" + \null + "abc def ghi jkl" + "‮abc def ghi jkl‬" + } +} diff --git a/input/regression/markup-bidi-implicit-marks.ly b/input/regression/markup-bidi-implicit-marks.ly new file mode 100644 index 0000000000..7bad2c91ce --- /dev/null +++ b/input/regression/markup-bidi-implicit-marks.ly @@ -0,0 +1,18 @@ +\version "2.13.10" + +\header { + texidoc = " +The implicit directional marks, U+200E and U+200F, are supported +in single-line markup strings. +" +} + +\markup { + \column { + "אבה \"ABC!\" אבה" + "אבה \"ABC!‎\" אבה" + \null + "abc \"אבה!\" def" + "abc \"אבה!‏\" def" + } +} -- 2.39.5