diff options
Diffstat (limited to 'input')
-rw-r--r-- | input/regression/midi/dynamic-voices-sequential.ly | 15 | ||||
-rw-r--r-- | input/regression/midi/dynamic-voices-simultaneous.ly | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/input/regression/midi/dynamic-voices-sequential.ly b/input/regression/midi/dynamic-voices-sequential.ly new file mode 100644 index 0000000000..2d25b2d696 --- /dev/null +++ b/input/regression/midi/dynamic-voices-sequential.ly @@ -0,0 +1,15 @@ +\version "2.19.47" + +\header { + texidoc="The MIDI performer operates in Voice context by default, + so dynamics in different voices are independent." +} + +\score { + \new Staff { + \new Voice = "A" c'2\p + \new Voice = "A" c'2 % default dynamic expected + } + + \midi {} +} diff --git a/input/regression/midi/dynamic-voices-simultaneous.ly b/input/regression/midi/dynamic-voices-simultaneous.ly new file mode 100644 index 0000000000..091dd68989 --- /dev/null +++ b/input/regression/midi/dynamic-voices-simultaneous.ly @@ -0,0 +1,15 @@ +\version "2.19.47" + +\header { + texidoc="The MIDI performer operates in Voice context by default, + so dynamics in different voices are independent." +} + +\score { + \new Staff << + \new Voice = "A" e'2\p + \new Voice = "A" c'2 % default dynamic expected + >> + + \midi {} +} |