]> git.donarmstrong.com Git - lilypond.git/commitdiff
display-lily-tests.ly: prettify the test code, keeping indentation levels
authorDavid Kastrup <dak@gnu.org>
Sat, 3 Dec 2011 14:19:23 +0000 (15:19 +0100)
committerDavid Kastrup <dak@gnu.org>
Mon, 5 Dec 2011 13:24:26 +0000 (14:24 +0100)
input/regression/display-lily-tests.ly

index 45b62e468be8ad4932747f30a20bdd7d0b823824..226d08d5e69a52cbfb81767325670f0941ff6fdc 100644 (file)
 #(define (lily-string->markup str)
    (make-column-markup (string-split str #\NewLine)))
 
-#(define test-function
-  (let ((test-number 0))
-   (lambda (parser location result-info strings)
-    (let ((input (car strings))
-         (output (cdr strings)))
-     (set! test-number (1+ test-number))
-     (if (not (equal? input output))
-         (ly:progress "Test ~a unequal: ~a. \nin  = ~a\nout = ~a\n"
-         test-number
-         (if result-info
-             result-info "BUG")
-          input output))
-     (make-music 'SequentialMusic 'void #t)))))
-
-test = 
-#(define-music-function (parser location result-info strings) (string? pair?)
-   (test-function parser location result-info strings))
+test =
+#(let ((test-number 0))
+  (define-void-function (parser location result-info strings)
+   ((string? "BUG") pair?)
+   (let ((input (car strings))
+        (output (cdr strings)))
+    (set! test-number (1+ test-number))
+    (if (not (equal? input output))
+     (ly:progress "Test ~a unequal: ~a. \nin  = ~a\nout = ~a\n"
+      test-number
+      result-info
+      input output)))))
 
 %%%
 %%% Tests
@@ -53,200 +48,200 @@ stderr of this run."
 }
 
 %% Sequential music
-\test "" ##[ { { a b } { c d } } #]            % SequentialMusic
-\test "" ##[ << { a b } { c d } >> #]          % SimultaneousMusic
-\test "" ##[ << { a b } \\ { c d } >> #]       % VoiceSeparator
+\test ##[ { { a b } { c d } } #]               % SequentialMusic
+\test ##[ << { a b } { c d } >> #]             % SimultaneousMusic
+\test ##[ << { a b } \\ { c d } >> #]          % VoiceSeparator
 
 %% Chords and Notes
-\test "" ##[ { ceses ces c cis cisis } #]      % NoteEvent
-\test "" ##[ { deses des d dis disis } #]
-\test "" ##[ { eeses ees e eis eisis } #]
-\test "" ##[ { feses fes f fis fisis } #]
-\test "" ##[ { geses ges g gis gisis } #]
-\test "" ##[ { aeses aes a ais aisis } #]
-\test "" ##[ { beses bes b bis bisis } #]
-\test "" ##[ { c,, d' } #]
-\test "" ##[ { c' d'=' } #]
-\test "" ##[ { c! c? } #]
-\test "" ##[ r1.*4/3 #]                % RestEvent
-\test "" ##[ c1\rest #]                % RestEvent
-\test "" ##[ s2..*3/4 #]               % SkipEvent
-\test "" ##[ R1.*2/3 #]                % MultiMeasureRestMusicGroup, MultiMeasureRestEvent
-\test "" ##[ \skip 2.*3/4 #]           % SkipMusic
-\test "" ##[ < c\1 e\3 >4.*3/4-. #]    % EventChord, NoteEvent, StringNumberEvent, ArticulationEvent
-\test "" ##[ < c-1\4 >8 #]
+\test ##[ { ceses ces c cis cisis } #]         % NoteEvent
+\test ##[ { deses des d dis disis } #]
+\test ##[ { eeses ees e eis eisis } #]
+\test ##[ { feses fes f fis fisis } #]
+\test ##[ { geses ges g gis gisis } #]
+\test ##[ { aeses aes a ais aisis } #]
+\test ##[ { beses bes b bis bisis } #]
+\test ##[ { c,, d' } #]
+\test ##[ { c' d'=' } #]
+\test ##[ { c! c? } #]
+\test ##[ r1.*4/3 #]           % RestEvent
+\test ##[ c1\rest #]           % RestEvent
+\test ##[ s2..*3/4 #]                  % SkipEvent
+\test ##[ R1.*2/3 #]           % MultiMeasureRestMusicGroup, MultiMeasureRestEvent
+\test ##[ \skip 2.*3/4 #]              % SkipMusic
+\test ##[ < c\1 e\3 >4.*3/4-. #]       % EventChord, NoteEvent, StringNumberEvent, ArticulationEvent
+\test ##[ < c-1\4 >8 #]
 \test "NOT A BUG" ##[ { < c e g c' > q8-. } #] % RepeatedChord
 
 %% tags
-\test "" ##[ { \tag #'foo { c4 d } } #]
-\test "" ##[ c-\tag #'foo -\tag #'baz -^ -. #]
+\test ##[ { \tag #'foo { c4 d } } #]
+\test ##[ c-\tag #'foo -\tag #'baz -^ -. #]
 
 %% Graces
-\test "" ##[ { \grace c8 d2 } #]                       % GraceMusic
-\test "" ##[ { \appoggiatura c8 d2 } #]
-\test "" ##[ { \acciaccatura c8 d2 } #]
-\test "" ##[ { c1 \afterGrace { b,16 c } d2 } #]
+\test ##[ { \grace c8 d2 } #]                          % GraceMusic
+\test ##[ { \appoggiatura c8 d2 } #]
+\test ##[ { \acciaccatura c8 d2 } #]
+\test ##[ { c1 \afterGrace { b,16 c } d2 } #]
 
 %% Clusters
-\test "" ##[ { \makeClusters { c4 g } } #]             % ClusterNoteEvent
+\test ##[ { \makeClusters { c4 g } } #]                        % ClusterNoteEvent
 
 %% Figured bass
-\test "" ##[ \figures { < 6 > } #]                     % BassFigureEvent
-\test "" ##[ \figuremode { < 1-- 3- > < 2+ 4++ > < _! 7! > } #]
-\test "" ##[ \figuremode { < [6 > < 5] > } #]
+\test ##[ \figures { < 6 > } #]                                % BassFigureEvent
+\test ##[ \figuremode { < 1-- 3- > < 2+ 4++ > < _! 7! > } #]
+\test ##[ \figuremode { < [6 > < 5] > } #]
 
 %% Lyrics
-\test "" ##[ \lyrics { a b } #]
-\test "" ##[ \lyricmode { a --  b } #]                 % HyphenEvent
-\test "" ##[ \lyricmode { a __  b } #]                 % ExtenderEvent
-\test "" ##[ \lyricmode { "a " } #]                    % LyricEvent
-\test "" ##[ \lyricsto "foo" { bla bla  } #]           % LyricCombineMusic
-\test "" ##[ { { c d }
+\test ##[ \lyrics { a b } #]
+\test ##[ \lyricmode { a --  b } #]            % HyphenEvent
+\test ##[ \lyricmode { a __  b } #]            % ExtenderEvent
+\test ##[ \lyricmode { "a " } #]                       % LyricEvent
+\test ##[ \lyricsto "foo" { bla bla  } #]              % LyricCombineMusic
+\test ##[ { { c d }
   \addlyrics { bla bla  } } #]
 
 %% Drums
-\test "" ##[ \drums { hihat } #]
-\test "" ##[ \drummode { hihat4.*3/4 } #]
+\test ##[ \drums { hihat } #]
+\test ##[ \drummode { hihat4.*3/4 } #]
 
 %% Expressive marks
-\test "" ##[ c4 ~ #]                                   % TieEvent
-\test "" ##[ c\noBeam #]                               % BeamForbidEvent
-\test "" ##[ c\1 #]                                    % StringNumberEvent
-\test "" ##[ { c:  c:1  } #]                           % TremoloEvent
-\test "" ##[ { c-^  c^^  c_^  } #]                     % ArticulationEvent
-\test "" ##[ { c-+  c^+  c_+  } #]
-\test "" ##[ { c--  c^-  c_-  } #]
-\test "" ##[ { c-|  c^|  c_|  } #]
-\test "" ##[ { c->  c^>  c_>  } #]
-\test "" ##[ { c-.  c^.  c_.  } #]
-\test "" ##[ { c-_  c^_  c__  } #]
-\test "" ##[ { c-\trill  c^\trill  c_\trill  } #]
-\test "" ##[ { c-1  c^2  c_3  } #]                     % FingerEvent
-\test "" ##[ { c-"foo"  c^"foo"  c_"foo"  } #] % TextScriptEvent
-\test "" ##[ { R1*4-"foo"  R^"foo"  R_"foo"  } #]      % MultiMeasureTextEvent
-\test "" ##[ { < c\harmonic >4 < c e\harmonic > } #]   % HarmonicEvent
-\test "" ##[ { c-\glissando  c^\glissando  c_\glissando  } #] % GlissandoEvent
-\test "" ##[ { c-\arpeggio  c^\arpeggio  c_\arpeggio  } #]     % ArpeggioEvent
-\test "" ##[ { c\p  c^\ff  c_\sfz  } #]                % AbsoluteDynamicEvent
-\test "" ##[ { c[  c]  c^[  c^]  c_[  c_]  } #]        % BeamEvent
-\test "" ##[ { c(  c)  c^(  c^)  c_(  c_)  } #]        % SlurEvent
-\test "" ##[ { c\<  c\!  c^\<  c^\!  c_\<  c_\!  } #]  % CrescendoEvent
-\test "" ##[ { c\>  c\!  c^\>  c^\!  c_\>  c_\!  } #]  % DecrescendoEvent
-\test "" ##[ { c\episemInitium  c\episemFinis  } #] % EpisemaEvent
-\test "" ##[ { c\(  c\)  c^\(  c^\)  c_\(  c_\)  } #]  % PhrasingSlurEvent
-\test "" ##[ { c\sustainOn  c\sustainOff  } #] % SustainEvent
-\test "" ##[ { c\sostenutoOn  c\sostenutoOff  } #] % SostenutoEvent
-\test "" ##[ \melisma #]
-\test "" ##[ \melismaEnd #]
-\test "" ##[ { c\startTextSpan  c\stopTextSpan  } #] % TextSpanEvent
-\test "" ##[ { c\startTrillSpan  c\stopTrillSpan  } #] % TrillSpanEvent
-\test "" ##[ { c \startStaff c \stopStaff } #] % StaffSpanEvent
-\test "" ##[ { c\startGroup  c\stopGroup  c^\startGroup  c^\stopGroup  c_\startGroup  c_\stopGroup  } #] % NoteGroupingEvent
-\test "" ##[ { c\unaCorda  c\treCorde  } #] % UnaCordaEvent
-\test "" ##[ \breathe #]
-\test "" ##[ { c \[ c \] } #]                  % LigatureEvent
-\test "" ##[ \~ #]                                     % PesOrFlexaEvent
-\test "" ##[ { c-\bendAfter #3  } #] % BendAfterEvent
-\test "" ##[ < c-\rightHandFinger #1 > #] % StrokeFingerEvent
-
-\test "" ##[ \break #]
-\test "" ##[ \noBreak #]
-\test "" ##[ \pageBreak #]
-\test "" ##[ \noPageBreak #]
-\test "" ##[ \pageTurn #]
-\test "" ##[ \noPageTurn #]
+\test ##[ c4 ~ #]                                      % TieEvent
+\test ##[ c\noBeam #]                                  % BeamForbidEvent
+\test ##[ c\1 #]                                       % StringNumberEvent
+\test ##[ { c:  c:1  } #]                              % TremoloEvent
+\test ##[ { c-^  c^^  c_^  } #]                                % ArticulationEvent
+\test ##[ { c-+  c^+  c_+  } #]
+\test ##[ { c--  c^-  c_-  } #]
+\test ##[ { c-|  c^|  c_|  } #]
+\test ##[ { c->  c^>  c_>  } #]
+\test ##[ { c-.  c^.  c_.  } #]
+\test ##[ { c-_  c^_  c__  } #]
+\test ##[ { c-\trill  c^\trill  c_\trill  } #]
+\test ##[ { c-1  c^2  c_3  } #]                                % FingerEvent
+\test ##[ { c-"foo"  c^"foo"  c_"foo"  } #]    % TextScriptEvent
+\test ##[ { R1*4-"foo"  R^"foo"  R_"foo"  } #]         % MultiMeasureTextEvent
+\test ##[ { < c\harmonic >4 < c e\harmonic > } #]      % HarmonicEvent
+\test ##[ { c-\glissando  c^\glissando  c_\glissando  } #]    % GlissandoEvent
+\test ##[ { c-\arpeggio  c^\arpeggio  c_\arpeggio  } #]        % ArpeggioEvent
+\test ##[ { c\p  c^\ff  c_\sfz  } #]                   % AbsoluteDynamicEvent
+\test ##[ { c[  c]  c^[  c^]  c_[  c_]  } #]           % BeamEvent
+\test ##[ { c(  c)  c^(  c^)  c_(  c_)  } #]           % SlurEvent
+\test ##[ { c\<  c\!  c^\<  c^\!  c_\<  c_\!  } #]     % CrescendoEvent
+\test ##[ { c\>  c\!  c^\>  c^\!  c_\>  c_\!  } #]     % DecrescendoEvent
+\test ##[ { c\episemInitium  c\episemFinis  } #]    % EpisemaEvent
+\test ##[ { c\(  c\)  c^\(  c^\)  c_\(  c_\)  } #]     % PhrasingSlurEvent
+\test ##[ { c\sustainOn  c\sustainOff  } #]    % SustainEvent
+\test ##[ { c\sostenutoOn  c\sostenutoOff  } #]    % SostenutoEvent
+\test ##[ \melisma #]
+\test ##[ \melismaEnd #]
+\test ##[ { c\startTextSpan  c\stopTextSpan  } #]    % TextSpanEvent
+\test ##[ { c\startTrillSpan  c\stopTrillSpan  } #]    % TrillSpanEvent
+\test ##[ { c \startStaff c \stopStaff } #]    % StaffSpanEvent
+\test ##[ { c\startGroup  c\stopGroup  c^\startGroup  c^\stopGroup  c_\startGroup  c_\stopGroup  } #]    % NoteGroupingEvent
+\test ##[ { c\unaCorda  c\treCorde  } #]    % UnaCordaEvent
+\test ##[ \breathe #]
+\test ##[ { c \[ c \] } #]                     % LigatureEvent
+\test ##[ \~ #]                                                % PesOrFlexaEvent
+\test ##[ { c-\bendAfter #3  } #]    % BendAfterEvent
+\test ##[ < c-\rightHandFinger #1 > #]    % StrokeFingerEvent
+
+\test ##[ \break #]
+\test ##[ \noBreak #]
+\test ##[ \pageBreak #]
+\test ##[ \noPageBreak #]
+\test ##[ \pageTurn #]
+\test ##[ \noPageTurn #]
 
 %% Checks
-\test "" ##[ \octaveCheck a' #]                                % RelativeOctaveCheck
-\test "" ##[ | #]                                      % BarCheck
+\test ##[ \octaveCheck a' #]                           % RelativeOctaveCheck
+\test ##[ | #]                                         % BarCheck
 
 %% Marks
-\test "" ##[ \mark \default #]                 % MarkEvent
-\test "" ##[ \mark "Allegro" #]
-\test "" ##[ \tempo 4 = 120 #]                 % MetronomeChangeEvent
-\test "" ##[ \tempo 4 = 108 ~ 116 #]
-\test "" ##[ \tempo "Allegro" 4 = 132 #]
-\test "" ##[ \tempo "Andante" #]
+\test ##[ \mark \default #]                    % MarkEvent
+\test ##[ \mark "Allegro" #]
+\test ##[ \tempo 4 = 120 #]                    % MetronomeChangeEvent
+\test ##[ \tempo 4 = 108 ~ 116 #]
+\test ##[ \tempo "Allegro" 4 = 132 #]
+\test ##[ \tempo "Andante" #]
 
 %% key, time, clef, bar
-\test "" ##[ \key \default #]                  % KeyChangeEvent
-\test "" ##[ \key e \minor #]
-\test "" ##[ \clef "bass" #]
-\test "" ##[ \clef "french^2" #]
-\test "" ##[ \clef "alto_3" #]
-\test "" ##[ \time 2/4 #]
-\test "" ##[ \time #'(3 2) 5/8 #]
-\test "" ##[ \bar "|." #]
+\test ##[ \key \default #]                     % KeyChangeEvent
+\test ##[ \key e \minor #]
+\test ##[ \clef "bass" #]
+\test ##[ \clef "french^2" #]
+\test ##[ \clef "alto_3" #]
+\test ##[ \time 2/4 #]
+\test ##[ \time #'(3 2) 5/8 #]
+\test ##[ \bar "|." #]
 
 %% staff switches
-\test "" ##[ \autochange { c d } #]                    % AutoChangeMusic
-\test "" ##[ { \change Staff = "up" { c d } } #]       % ContextChange
+\test ##[ \autochange { c d } #]                       % AutoChangeMusic
+\test ##[ { \change Staff = "up" { c d } } #]          % ContextChange
 
 %% Tuplets
-\test "" ##[ \times 2/3 { c8 d e } #]                          % TimeScaledMusic
-\test "" ##[ \times 4/6 { c16 d e f g a } #]
+\test ##[ \times 2/3 { c8 d e } #]                             % TimeScaledMusic
+\test ##[ \times 4/6 { c16 d e f g a } #]
 %}
 %% \relative and \tranpose
 \test #"NOT A BUG" ##[ \relative c' { c b } #] % RelativeOctaveMusic
 \test #"NOT A BUG" ##[ \transpose c d { c d } #]       % TransposedMusic
 %}
 %% Repeats
-\test "" ##[ \repeat volta 2 { c d } #]                % VoltaRepeatedMusic
-\test "" ##[ \repeat unfold 2 { c d } #]               % UnfoldedRepeatedMusic
-\test "" ##[ \repeat percent 2 { c d } #]              % PercentRepeatedMusic
-\test "" ##[ \repeat tremolo 4 { c16 d } #]            % TremoloRepeatedMusic
-\test "" ##[ \repeat volta 2 { c4 d } \alternative { { c d } { e f } } #] % 
+\test ##[ \repeat volta 2 { c d } #]           % VoltaRepeatedMusic
+\test ##[ \repeat unfold 2 { c d } #]                  % UnfoldedRepeatedMusic
+\test ##[ \repeat percent 2 { c d } #]                 % PercentRepeatedMusic
+\test ##[ \repeat tremolo 4 { c16 d } #]               % TremoloRepeatedMusic
+\test ##[ \repeat volta 2 { c4 d } \alternative { { c d } { e f } } #]    % 
 
 %% Context creation
-\test "" ##[ \new Staff { c d } #]                     % ContextSpeccedMusic
-\test "" ##[ \new Staff = "up" { c d } #]                      % ContextSpeccedMusic
-\test "" ##[ \context Staff { c d } #]
-\test "" ##[ \context Staff = "up" { c d } #]
-\test "" ##[
+\test ##[ \new Staff { c d } #]                                % ContextSpeccedMusic
+\test ##[ \new Staff = "up" { c d } #]                         % ContextSpeccedMusic
+\test ##[ \context Staff { c d } #]
+\test ##[ \context Staff = "up" { c d } #]
+\test ##[
 \new Staff \with {
   \consists "Timing_engraver"
   \remove "Clef_engraver"
 } { c d } #]
 %% Context properties
-\test "" ##[ \once \set Score . skipBars = ##t #]      % PropertySet
-\test "" ##[ \set autoBeaming = ##f #]
-\test "" ##[ \unset Score . skipBars #]                % PropertyUnset
-\test "" ##[ \unset autoBeaming #]
+\test ##[ \once \set Score . skipBars = ##t #]         % PropertySet
+\test ##[ \set autoBeaming = ##f #]
+\test ##[ \unset Score . skipBars #]           % PropertyUnset
+\test ##[ \unset autoBeaming #]
 %% Layout properties
-\test "" ##[ \override Staff . Stem #'thickness = #4.0 #]      % OverrideProperty
-\test "" ##[ \once \override Beam #'beam-thickness = #0.6 #]
-\test "" ##[ \revert Staff . Stem #'thickness #]       % RevertProperty
-\test "" ##[ \revert Beam #'beam-thickness #]
+\test ##[ \override Staff . Stem #'thickness = #4.0 #]         % OverrideProperty
+\test ##[ \once \override Beam #'beam-thickness = #0.6 #]
+\test ##[ \revert Staff . Stem #'thickness #]          % RevertProperty
+\test ##[ \revert Beam #'beam-thickness #]
 \test "NOT A BUG" ##[ \oneVoice #]     % resetting a bunch of properties
-\test "" ##[ \override StaffGrouper #'(staff-staff-spacing basic-distance) = #7 #] % nested properties
-\test "" ##[ \revert StaffGrouper #'(staff-staff-spacing basic-distance) #] % nested properties
+\test ##[ \override StaffGrouper #'(staff-staff-spacing basic-distance) = #7 #]    % nested properties
+\test ##[ \revert StaffGrouper #'(staff-staff-spacing basic-distance) #]    % nested properties
 
 %% \applyOutput
-\test "" ##[ \applyOutput #'Foo #(lambda (arg) (list)) #]
+\test ##[ \applyOutput #'Foo #(lambda (arg) (list)) #]
 %% \applyContext
-\test "" ##[ \applyContext #(lambda (arg) (list)) #]
+\test ##[ \applyContext #(lambda (arg) (list)) #]
 
 %% \partial
-\test "" ##[ \partial 2 #]
-\test "" ##[ \partial 8. #]
-\test "" ##[ \partial 4*2/3 #]
+\test ##[ \partial 2 #]
+\test ##[ \partial 8. #]
+\test ##[ \partial 4*2/3 #]
 
 %% \partcombine
-\test "" ##[ \partcombine { c e }
+\test ##[ \partcombine { c e }
 { d f } #]                                             % PartCombineMusic UnrelativableMusic
 
 %% Cue notes
-\test "" ##[ \cueDuring #"foo" #1 { c d } #]
-\test "" ##[ \quoteDuring #"foo" { c d } #]
+\test ##[ \cueDuring #"foo" #1 { c d } #]
+\test ##[ \quoteDuring #"foo" { c d } #]
 
 %% \ottava
-\test "" ##[ \ottava #1 #] % OttavaMusic
+\test ##[ \ottava #1 #]    % OttavaMusic
 
 %% \tweak
-\test "" ##[ < \tweak #'duration-log #2 c > #]
-\test "" ##[ < c \tweak #'transparent ##t e > #]
-\test "" ##[ < \tweak #'color #'(1.0 0.0 0.0) \tweak #'duration-log #2 c > #]
-\test "" ##[ c-\tweak #'font-size #3 -> #]
+\test ##[ < \tweak #'duration-log #2 c > #]
+\test ##[ < c \tweak #'transparent ##t e > #]
+\test ##[ < \tweak #'color #'(1.0 0.0 0.0) \tweak #'duration-log #2 c > #]
+\test ##[ c-\tweak #'font-size #3 -> #]
 
 %% end test.