]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/clef-warn.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / clef-warn.ly
index 5f3b410e9d131896f8dab68d12cdcffa4f424539..7814e757259ba18d288017fc9d31f0f6d483e33d 100644 (file)
@@ -1,10 +1,15 @@
+\version "2.16.0"
+
+#(ly:set-option 'warning-as-error #f)
+#(ly:expect-warning (_ "unknown clef type `~a'") "foo")
+% We don't need to match the whole list of clefs, the beginning will suffice
+#(ly:expect-warning (_ "supported clefs: ~a") "C F G G2")
+
 \header {
   texidoc = "Unknown clef name warning displays available clefs"
-  }
-
+}
 
-\version "2.12.0"
 {
   \clef "foo"
   c4
-  }
+}