From 20319bc0abdaacbd5e26882c88eea558de60e936 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Mon, 24 Aug 2009 14:03:21 -0700 Subject: [PATCH] Add a regression test for bug 496. --- .../page-breaking-good-estimation.ly | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 input/regression/page-breaking-good-estimation.ly diff --git a/input/regression/page-breaking-good-estimation.ly b/input/regression/page-breaking-good-estimation.ly new file mode 100644 index 0000000000..4b4b3c4366 --- /dev/null +++ b/input/regression/page-breaking-good-estimation.ly @@ -0,0 +1,33 @@ +\version "2.13.4" + +\header { + texidoc = "The page breaking algorithm can handle clefs combined +with lyrics. That is, the Y-extent approximations are a little more +accurate than just using bounding boxes. In particular, everything +should fit on one page here." +} + +#(set-default-paper-size "a6") + +Melody = \relative c' { + c2 c | c c | c c | \break + c2 c | c c | c c +} +Words = \lyricmode{ + bla bla bla bla bla bla + bla bla bla bla bla bla +} +\book { + \score { + << + \new Staff{\Melody} + \addlyrics{\Words} + \new Staff{\Melody} + \addlyrics{\Words} + \new Staff{\Melody} + \addlyrics{\Words} + \new Staff{\Melody} + \addlyrics{\Words} + >> + } +} -- 2.39.5