From: Graham Percival Date: Tue, 30 Aug 2011 06:16:58 +0000 (+0100) Subject: Regtests: merge bar-line-*.ly but not -segno. X-Git-Tag: release/2.15.9-1~1 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=c10c479b563cd101afa7eaddb6663f11e905555e;p=lilypond.git Regtests: merge bar-line-*.ly but not -segno. --- diff --git a/input/regression/bar-line-dashed.ly b/input/regression/bar-line-dashed.ly deleted file mode 100644 index cf6ebd09bb..0000000000 --- a/input/regression/bar-line-dashed.ly +++ /dev/null @@ -1,17 +0,0 @@ - -\header { texidoc = "The dashes in a dashed bar line covers staff - lines exactly. Dashed barlines between staves start and end on a - half dash precisely." } - -\version "2.14.0" - -\paper { ragged-right = ##t } - -\relative \new StaffGroup << - \new Staff { - c4 \bar "dashed" c } - \new Staff { - c c - } ->> - diff --git a/input/regression/bar-line-dotted.ly b/input/regression/bar-line-dotted.ly deleted file mode 100644 index eb7a63c6ca..0000000000 --- a/input/regression/bar-line-dotted.ly +++ /dev/null @@ -1,18 +0,0 @@ - -\header { - texidoc = "The dots in a dotted bar line are in spaces." - -} - -\version "2.14.0" - -\paper { ragged-right = ##t } - -\relative \new StaffGroup << - \new Staff { - c4 \bar ":" c } - \new Staff { - c c - } ->> - diff --git a/input/regression/bar-line-thick.ly b/input/regression/bar-line-thick.ly deleted file mode 100644 index 68fde67aa2..0000000000 --- a/input/regression/bar-line-thick.ly +++ /dev/null @@ -1,15 +0,0 @@ - -\header { texidoc = "A thick bar line is created by \bar \".\", which is consistent with e.g. \bar \"|.\"" } - -\version "2.14.0" - -\paper { ragged-right = ##t } - -\relative \new StaffGroup << - \new Staff { - c4 \bar "." c } - \new Staff { - c c - } ->> - diff --git a/input/regression/bar-line-tick.ly b/input/regression/bar-line-tick.ly deleted file mode 100644 index be2d6ffca6..0000000000 --- a/input/regression/bar-line-tick.ly +++ /dev/null @@ -1,16 +0,0 @@ - -\header { texidoc = "A ticked bar line is a short line of the same length as a - staff space, centered on the top-most barline." } - -\version "2.14.0" - -\paper { ragged-right = ##t } - -\relative \new StaffGroup << - \new Staff { - c4 \bar "'" c } - \new Staff { - c c - } ->> - diff --git a/input/regression/bar-lines.ly b/input/regression/bar-lines.ly new file mode 100644 index 0000000000..8c91060c20 --- /dev/null +++ b/input/regression/bar-lines.ly @@ -0,0 +1,38 @@ +\version "2.14.0" + +\header { texidoc = "Various types of bar lines can be drawn. + +The dashes in a dashed bar line covers staff lines exactly. Dashed +barlines between staves start and end on a half dash precisely. + +The dots in a dotted bar line are in spaces. + +A thick bar line is created by \bar \".\", which is consistent +with e.g. \bar \"|.\" + +A ticked bar line is a short line of the same length as a staff +space, centered on the top-most barline. + +" } + +\relative \new StaffGroup << + \new Staff = "1" { + c2 \bar "dashed" c + s1 + c2 \bar ":" c + s1 + c2 \bar "." c + s1 + c2 \bar "'" c + } + \new Staff = "2" { + c2 c + s1 + c2 c + s1 + c2 c + s1 + c2 c + } +>> +