ocarina/tests/Sconscript

22 lines
420 B
Plaintext
Raw Normal View History

#!/usr/bin/python
Import("env")
src = SConscript("src/Sconscript")
tests = [ "version" ]
def Test(name):
return Command("%s.out" % name, [], "./tests/%s" % name)
for test in tests:
t = Test(test)
Depends(t, src)
AlwaysBuild(t)
#AlwaysBuild(test)
#Depends(test, src)
#scripts = [ "print", "file", "database", "index", "filter", "idle", "playlist",
# "library", "playqueue", "deck", "audio", "gui" ]