]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add regression test for issue 1232, which has been fixed earlier
authorCarl Sorensen <c_sorensen@byu.edu>
Sun, 12 Sep 2010 12:53:08 +0000 (06:53 -0600)
committerCarl Sorensen <c_sorensen@byu.edu>
Mon, 13 Sep 2010 03:35:45 +0000 (21:35 -0600)
input/regression/tablature-tremolo.ly [new file with mode: 0644]

diff --git a/input/regression/tablature-tremolo.ly b/input/regression/tablature-tremolo.ly
new file mode 100644 (file)
index 0000000..6725e9a
--- /dev/null
@@ -0,0 +1,30 @@
+%-------------------8<----------------------------
+\version "2.13.30"
+
+music = {
+  <c e g c' e'>4:16
+  \stemUp
+  \repeat tremolo 4 c'16
+  \repeat tremolo 2 { c16 d }
+  \repeat tremolo 4 { <c d>16 }
+}
+
+\score {
+  <<
+    \new Staff {
+      \clef "treble_8"
+      \music
+    }
+    \new TabStaff {
+      \music
+    }
+  >>
+}
+
+\score {
+  \new TabStaff {
+    \tabFullNotation
+    \music
+  }
+}
+%-------------------8<----------------------------