ocarina/tests/core/containers/Sconscript

16 lines
321 B
Python

#!/usr/bin/python
Import("CoreTest", "testing_group")
res = []
def ContainerTest(name):
run = CoreTest("containers/%s" % name)
Alias("tests/core/containers", run)
if len(res) > 0 and testing_group([ "tests/core/containers" ]):
Depends(run, res[-1])
return run
res += [ ContainerTest("database") ]
Return("res")