From: Joe Neeman Date: Wed, 9 Jan 2008 04:37:08 +0000 (+0100) Subject: Add regression test for mixed clefs and octavations. X-Git-Tag: release/2.11.38-1~23 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e7f6416d7f3379d5b64f9e783cd519acc5482546;p=lilypond.git Add regression test for mixed clefs and octavations. --- diff --git a/input/regression/clef-ottava.ly b/input/regression/clef-ottava.ly new file mode 100644 index 0000000000..d01e6c912e --- /dev/null +++ b/input/regression/clef-ottava.ly @@ -0,0 +1,26 @@ + +\header +{ + texidoc = "Ottava brackets and clefs both modify Staff.middleCPosition, +but they don't confuse one another." +} + +\version "2.11.36" + +\layout { ragged-right = ##t} + +\relative c'' { + \clef "alto" + a b c a + #(set-octavation 1) + a b c a + \clef "bass" + a b c a + #(set-octavation 2) + a b c a + \clef "treble" + #(set-octavation -1) + a b c a +} + +