From: Carl Sorensen Date: Sun, 12 Sep 2010 12:53:08 +0000 (-0600) Subject: Add regression test for issue 1232, which has been fixed earlier X-Git-Tag: release/2.13.34-1~22^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=714255ba9010e3ddb78e56fdf1ea0393a9fbc350;p=lilypond.git Add regression test for issue 1232, which has been fixed earlier --- diff --git a/input/regression/tablature-tremolo.ly b/input/regression/tablature-tremolo.ly new file mode 100644 index 0000000000..6725e9af69 --- /dev/null +++ b/input/regression/tablature-tremolo.ly @@ -0,0 +1,30 @@ +%-------------------8<---------------------------- +\version "2.13.30" + +music = { + 4:16 + \stemUp + \repeat tremolo 4 c'16 + \repeat tremolo 2 { c16 d } + \repeat tremolo 4 { 16 } +} + +\score { + << + \new Staff { + \clef "treble_8" + \music + } + \new TabStaff { + \music + } + >> +} + +\score { + \new TabStaff { + \tabFullNotation + \music + } +} +%-------------------8<----------------------------