ocarina/tests/Music/Sconscript
Anna Schumaker 8fe65e68b4 tests: Check for ffmpeg and vorbiscomment before generating music
We can't run most of our tests without the generated tracks.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2016-01-25 10:29:59 -05:00

11 lines
205 B
Python

#!/usr/bin/python
import subprocess
import sys
albums = [ "Hyrule_Symphony.album" ]
for album in albums:
ret = subprocess.call(["sh", "gen_tracks.sh", album])
if ret != 0:
sys.exit(ret)