ocarina/tests/core/Sconscript
Anna Schumaker f20898b79c driver: Merge code with audio.cpp
The driver is intended to be a small class, so put it in the audio code
now and we'll clean it up in future patches.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-12-19 14:37:56 -05:00

34 lines
618 B
Python

#!/usr/bin/python
Import("test_env", "generic_test", "get_test_obj")
objs = []
def test(name):
global objs
objs = generic_test(name, "core", objs, [])
test( "version" )
test( "file" )
test( "database" )
test( "index" )
test( "filter" )
test( "idle" )
test( "tags/generic" )
test( "tags/artist" )
test( "tags/album" )
test( "tags/genre" )
test( "tags/library" )
test( "tags/track" )
test( "random" )
objs += [ get_test_obj("callback", "core") ]
objs += [ get_test_obj("tags/tags", "core") ]
test( "queue" )
test_env.UsePackage("taglib")
test( "library" )
test( "playlist" )
test( "deck" )
test( "audio" )