repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-1.5.14
[lilypond.git]
/
test
/
check-lily-midi.sh
blob
6ce2758490c75925b4868248fca0b2ae4d9c3930
1
#!/bin/sh
2
# check-lily-midi.sh
3
4
# out=check-lily.midi
5
# ugh -o is broken
6
out
=
lelie.midi
7
ok
=
$LILYPOND_SOURCEDIR
/
test
/
ok.midi
8
cat
<<EOF | lilypond -T -o
$out
9
\score{
10
\melodic{
11
c d e f g a b c'
12
}
13
\midi{}
14
}
15
EOF
16
17
# ugh
18
cmp
$out $ok
19
exit
$?
20