From: Joe Neeman Date: Mon, 25 Oct 2010 04:40:54 +0000 (-0700) Subject: Add regtests for 1240. X-Git-Tag: release/2.13.37-1~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;ds=sidebyside;h=c7b4d476fc85f5b831efaa66f712b15ced19e366;p=lilypond.git Add regtests for 1240. --- diff --git a/input/regression/page-breaking-min-distance2.ly b/input/regression/page-breaking-min-distance2.ly new file mode 100644 index 0000000000..d194f68f78 --- /dev/null +++ b/input/regression/page-breaking-min-distance2.ly @@ -0,0 +1,23 @@ +\version "2.13.37" + +\header { + texidoc = "minimum-distance within a system is correctly accounted for in page breaking." +} + +\layout { + \context { + \Score + \override VerticalAxisGroup #'next-staff-spacing = #'((space . 20) (stretchability . 0)) + } +} + +music = { c'1 \break c'1 } + +\book { + \paper { + paper-height = 9\cm + } + + \score { << \new Staff \music \new Staff \music >> } +} + diff --git a/input/regression/page-breaking-min-distance3.ly b/input/regression/page-breaking-min-distance3.ly new file mode 100644 index 0000000000..bb898d8959 --- /dev/null +++ b/input/regression/page-breaking-min-distance3.ly @@ -0,0 +1,23 @@ +\version "2.13.37" + +\header { + texidoc = "minimum-distance within a system is correctly accounted for in page breaking." +} + +\layout { + \context { + \Score + \override NonMusicalPaperColumn #'line-break-system-details = #'((alignment-distances . (20))) + } +} + +music = { c'1 \break c'1 } + +\book { + \paper { + paper-height = 9\cm + } + + \score { << \new Staff \music \new Staff \music >> } +} +