ocarina/tests/core/Sconscript
Anna Schumaker 7e52c9b364 Track: Move the default constructor to a new cpp file
I also use this opportunity to create a new default constructor test for
the Track tag.  This patch also disables the tags test since the tagdb
will be going away soon.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2014-12-04 08:31:51 -05:00

38 lines
694 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_env.UsePackage("taglib")
objs += [ get_test_obj("tags", "core") ]
objs += [ get_test_obj("tags/tags", "core") ]
test( "tags/track" )
#test( "tags" )
test( "random" )
objs += [ get_test_obj("callback", "core") ]
test( "queue" )
test( "library" )
test( "playlist" )
test( "deck" )
test( "driver" )
test( "audio" )