]> git.donarmstrong.com Git - lilypond.git/commitdiff
Regtests: merge bar-line-*.ly but not -segno.
authorGraham Percival <graham@percival-music.ca>
Tue, 30 Aug 2011 06:16:58 +0000 (07:16 +0100)
committerGraham Percival <graham@percival-music.ca>
Tue, 30 Aug 2011 06:18:29 +0000 (07:18 +0100)
input/regression/bar-line-dashed.ly [deleted file]
input/regression/bar-line-dotted.ly [deleted file]
input/regression/bar-line-thick.ly [deleted file]
input/regression/bar-line-tick.ly [deleted file]
input/regression/bar-lines.ly [new file with mode: 0644]

diff --git a/input/regression/bar-line-dashed.ly b/input/regression/bar-line-dashed.ly
deleted file mode 100644 (file)
index cf6ebd0..0000000
+++ /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 (file)
index eb7a63c..0000000
+++ /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 (file)
index 68fde67..0000000
+++ /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 (file)
index be2d6ff..0000000
+++ /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 (file)
index 0000000..8c91060
--- /dev/null
@@ -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
+  }
+>>
+