Skip to content

Commit

Permalink
add some regression test case input files
Browse files Browse the repository at this point in the history
This is for when we get round to writing a test framework.
Currently they can only be used by manually running ly2video
on them.
  • Loading branch information
aspiers committed Feb 7, 2013
1 parent c2ab06e commit 9c8fb86
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.avi
3 changes: 3 additions & 0 deletions test/regressions/include-user-file/included.ly
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
\version "2.16.0"

foo = \relative c' { c4 d e f }
14 changes: 14 additions & 0 deletions test/regressions/include-user-file/input.ly
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
\version "2.16.0"
\include "included.ly"

\header {
}

\score {
\new Voice {
\foo
}
\layout { }
\midi { }
}

16 changes: 16 additions & 0 deletions test/regressions/partial/input.ly
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
\version "2.16.0"

\header {
}

\score {
\new Voice {
\relative c' {
\partial 8 g8
|
c4 d e f
}
}
\layout { }
\midi { }
}
22 changes: 22 additions & 0 deletions test/regressions/turn/input.ly
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
\version "2.16.0"

\include "articulate.ly"

\header {
}

music = \new Voice {
\relative c' {
c4 d \turn e f
}
}

\score {
\music
\layout { }
}

\score {
\articulate \music
\midi { }
}

0 comments on commit 9c8fb86

Please sign in to comment.