From: Han-Wen Nienhuys Date: Tue, 2 Jan 2007 02:00:51 +0000 (+0100) Subject: Fix measure-grouping.ly test X-Git-Tag: release/2.11.8-1~47 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3cf78860f1c419ff2cc1a54af0956b0fce2f108b;p=lilypond.git Fix measure-grouping.ly test Put \consists before score. This puts the grouping signs in the output, and fixes coverage of Lookup::triangle. --- diff --git a/input/regression/measure-grouping.ly b/input/regression/measure-grouping.ly index 64a1e8153d..cfea330422 100644 --- a/input/regression/measure-grouping.ly +++ b/input/regression/measure-grouping.ly @@ -9,10 +9,16 @@ brackets above beats when the beats of a time signature are grouped. " \version "2.10.0" +\layout { + ragged-right = ##t +} %% TODO: should have 2/4 + 5/8 time sig style. -\context Staff +\context Staff \with { + \consists "Measure_grouping_engraver" + } + \relative c' { #(set-time-signature 2 4) c8 a'4 a8~ @@ -23,12 +29,5 @@ brackets above beats when the beats of a time signature are grouped. " #(set-time-signature 5 8 '(3 2)) g8 a4 g a4.-> } -\layout { - ragged-right = ##t - \context { - \Staff - \consists "Measure_grouping_engraver" - } -}