]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/page-turn-page-breaking-badturns.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / page-turn-page-breaking-badturns.ly
index ff872ae2123ab487c305d4fe1793b309a82c45bd..47168fa145c2d720cd9d8ac656013cafdf9d1d18 100644 (file)
@@ -1,22 +1,28 @@
-\version "2.9.13"
+\version "2.16.0"
+#(ly:set-option 'warning-as-error #f)
+#(ly:expect-warning (_ "cannot fit the first page turn onto a single page.  Consider setting first-page-number to an even number."))
 
-\header{
+\header {
     texidoc="If there are no good places to have a page turn,
 the optimal-breaker will just have to recover gracefully. This
 should appear on 3 pages.
 "
 }
 
-\paper {
-  #(define page-breaking ly:page-turn-breaking)
-  paper-height = #70
-  print-page-number = ##t
-}
+\book {
+  \paper {
+    #(define page-breaking ly:page-turn-breaking)
+    paper-height = #40
+    print-page-number = ##t
+  }
 
-\relative c' {
-  a b c d a b c d \break
-  c d e f c d e f \break
-  d e f g d e f g
+  \score {
+    \relative c' {
+      a b c d a b c d \break
+      c d e f c d e f \break
+      d e f g d e f g
+    }
+  }
 }