From: Trevor Daniels Date: Thu, 1 Sep 2011 07:43:29 +0000 (+0100) Subject: Clarify purpose of spacing-loose-grace-error test X-Git-Tag: release/2.15.10-1~24 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=dab88c1bb71c176dd6c08e05a3cc149fa64e62df;p=lilypond.git Clarify purpose of spacing-loose-grace-error test - elaborate comment to explain purpose of test - add ragged-right = ##f to avoid (expected) collision --- diff --git a/input/regression/spacing-loose-grace-error.ly b/input/regression/spacing-loose-grace-error.ly index 8a4752c269..cd647bcd82 100644 --- a/input/regression/spacing-loose-grace-error.ly +++ b/input/regression/spacing-loose-grace-error.ly @@ -1,19 +1,27 @@ \header { - + texidoc = "Even in case of incorrect contexts (eg. shortlived contexts) that break linking of columns through spacing wishes, - @code{strict-note-spacing} defaults to a robust solution." + @code{strict-note-spacing} defaults to a robust solution. + This test passes if it does not seg fault; instead it should + produce three programming error messages. Note that, in tight + music with strict note spacing, grace notes will collide with + normal notes. This is expected." } \version "2.14.0" - %% \new Staff cause shortlived, disconnected Voice contexts %% breaking spacing-wishes links. -\new Staff { - \override Score.SpacingSpanner #'strict-note-spacing = ##t - \afterGrace c'4 {c'32 c'32 } - c'4 +\score { + \new Staff { + \override Score.SpacingSpanner #'strict-note-spacing = ##t + \afterGrace c'4 {c'32 c'32 } + c'4 + } + \layout { + ragged-right = ##f + } }