-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add some regression test case input files
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
Showing
5 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.avi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { } | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { } | ||
} |