]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/warn-unterminated-span-dynamic.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / warn-unterminated-span-dynamic.ly
1 \version "2.16.0"
2
3 #(ly:set-option 'warning-as-error #f)
4 #(ly:expect-warning (ly:translate-cpp-warning-scheme "unterminated %s") "crescendo")
5 #(ly:expect-warning (ly:translate-cpp-warning-scheme "unterminated %s") "decrescendo")
6
7 \header {
8   texidoc = "A warning is printed if a dynamic spanner is
9 unterminated."
10 }
11
12 <<
13   \new Staff {
14     % warning expected: unterminated crescendo
15     c'1\<
16   }
17   \new Staff {
18     % warning expected: unterminated decrescendo
19     c'1\>
20   }
21 >>
22