From f08456644526cd7029f0b77da90746919c493f5b Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Tue, 5 Apr 2011 22:10:17 +0200 Subject: [PATCH] MIDI: add partcombine test. --- input/regression/midi/partcombine.ly | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 input/regression/midi/partcombine.ly diff --git a/input/regression/midi/partcombine.ly b/input/regression/midi/partcombine.ly new file mode 100644 index 0000000000..a81a07a3fc --- /dev/null +++ b/input/regression/midi/partcombine.ly @@ -0,0 +1,43 @@ +% Lily was here -- automatically converted by ../../../scripts/midi2ly.py from out/initial-key.midi +\version "2.13.53" + +\layout { + \context { + \Voice + \remove "Note_heads_engraver" + \consists "Completion_heads_engraver" + \remove "Rest_engraver" + \consists "Completion_rest_engraver" + } +} + +% included from ./out/initial-key.header +\header { +texidoc="Partcombined music is preserved" +options="" +} +% end + +instrumentOne = \relative c' { + c4 d e f + R1 + d'4 c b a + b4 g2 f4 + e1 +} + +instrumentTwo = \relative g' { + R1 + g4 a b c + d c b a + g f( e) d + e1 +} + +\score { +<< + \new Staff = "staff" \partcombine \instrumentOne \instrumentTwo + >> + \layout {} + \midi {} +} -- 2.39.2