diff options
author | Graham Percival <graham@percival-music.ca> | 2010-09-02 17:24:16 +0100 |
---|---|---|
committer | Graham Percival <graham@percival-music.ca> | 2010-09-03 14:18:38 +0100 |
commit | b95627d243f33f9c580a32ffa99cca297b631e0f (patch) | |
tree | 6089a782bd3cbade85d23294a9efd201a160310b | |
parent | be05cd64f013c03564d9a097c82ef26641c18dc4 (diff) |
Regtests: add missing descriptions (half fix 1206)
This adds descriptions to all regtests other than festival song-*.
-rw-r--r-- | input/regression/beam-concave-chord.ly | 5 | ||||
-rw-r--r-- | input/regression/figured-bass-slashed-numbers.ly | 6 | ||||
-rw-r--r-- | input/regression/flags-straight-stockhausen-boulez.ly | 9 | ||||
-rw-r--r-- | input/regression/les-nereides.ly | 2 | ||||
-rw-r--r-- | input/regression/mozart-hrn-3.ly | 7 | ||||
-rw-r--r-- | input/regression/predefined-fretboards.ly | 5 | ||||
-rw-r--r-- | input/regression/stem-tremolo-forced-dir.ly | 8 |
7 files changed, 37 insertions, 5 deletions
diff --git a/input/regression/beam-concave-chord.ly b/input/regression/beam-concave-chord.ly index 653165d87d..9eeaa95546 100644 --- a/input/regression/beam-concave-chord.ly +++ b/input/regression/beam-concave-chord.ly @@ -1,4 +1,9 @@ \version "2.12.0" +\header { +texidoc = "Concave beaming works for chords as well as monophonic +music. +" +} morgenliedBeam = \relative c'' \new Voice { \time 3/8 diff --git a/input/regression/figured-bass-slashed-numbers.ly b/input/regression/figured-bass-slashed-numbers.ly index 0289c3e9a2..f3cb62196e 100644 --- a/input/regression/figured-bass-slashed-numbers.ly +++ b/input/regression/figured-bass-slashed-numbers.ly @@ -1,5 +1,11 @@ \version "2.12.0" +\header { +texidoc = "Figured bass supports numbers with slashes through +them. +" +} + bassfigures = \figuremode { <0/ 1/ 2/> <3/ 4/ 5/> <6/ 7/ 8/> <9/ 10/ 11/> <12/ 13/ 100/> <0\\ 1\\ 2\\> <3\\ 4\\ 5\\> <6\\ 7\\ 8\\> <9\\ 10\\ 11\\> <12\\ 13\\ 100\\> diff --git a/input/regression/flags-straight-stockhausen-boulez.ly b/input/regression/flags-straight-stockhausen-boulez.ly index 49008ee3b1..8e1fdf86e9 100644 --- a/input/regression/flags-straight-stockhausen-boulez.ly +++ b/input/regression/flags-straight-stockhausen-boulez.ly @@ -1,5 +1,12 @@ \version "2.12.0" +\header { +texidoc = "Flags can be drawn straight in the style used by +Stockhausen and Boulez. +" +} + + stemLength = #(define-music-function (parser location length) (number?) "Set the length of the next stem explicitly." #{ @@ -27,4 +34,4 @@ stemLength = #(define-music-function (parser location length) (number?) \bar"|.|" \stemLength #1.25 <g! cis'>16 \stemLength #1.3 <f'! g''!>8 -}
\ No newline at end of file +} diff --git a/input/regression/les-nereides.ly b/input/regression/les-nereides.ly index 590e6607f4..b1e41085c5 100644 --- a/input/regression/les-nereides.ly +++ b/input/regression/les-nereides.ly @@ -7,6 +7,8 @@ enteredby = "JCN" piece = "Allegretto scherzando" copyright = "public domain" + + texidoc="Highly tweaked example of lilypond output" } %{ diff --git a/input/regression/mozart-hrn-3.ly b/input/regression/mozart-hrn-3.ly index 4e983cebb5..bcdc1834e2 100644 --- a/input/regression/mozart-hrn-3.ly +++ b/input/regression/mozart-hrn-3.ly @@ -32,14 +32,13 @@ " and share it!")) } } } -} -%{ + texidoc=" This is the Mozart 3 for horn. It's from an Edition Breitkopf EB 2563, edited by Henri Kling. Henri Kling (1842-1918) was a horn virtuoso that taught in Geneva. - -%} +" +} \version "2.12.0" diff --git a/input/regression/predefined-fretboards.ly b/input/regression/predefined-fretboards.ly index 00a9397ff6..8644ca0ba3 100644 --- a/input/regression/predefined-fretboards.ly +++ b/input/regression/predefined-fretboards.ly @@ -1,5 +1,10 @@ \version "2.12.0" +\header { +texidoc = "Predefined fretboards and chord shapes can be added. +" +} + % add a chord shape \addChordShape #'bes #guitar-tuning #"x;1-1-(;3-2;3-3;3-4;1-1-);" diff --git a/input/regression/stem-tremolo-forced-dir.ly b/input/regression/stem-tremolo-forced-dir.ly index 9b716b74c7..2957f05eaf 100644 --- a/input/regression/stem-tremolo-forced-dir.ly +++ b/input/regression/stem-tremolo-forced-dir.ly @@ -1,8 +1,16 @@ \version "2.12.0" + +\header { +texidoc = "Tremolo works even when a stem is forced in a +particular direction. +" +} + \layout { ragged-right = ##t } \relative c { \clef bass \stemUp f4 : 32 + \stemDown g,4 : 32 } |