SCons: fix leftover from the latest directory reorganisations

This commit is contained in:
Fischlurch 2008-12-26 22:26:41 +01:00
parent 072ea60352
commit bd7c05b669

View file

@ -69,15 +69,13 @@ def treatPluginTestcase(env):
moduledirs = globRootdirs('*')
# but have to treat some subdirs individually.
specials = ['plugin','library','backend','lumiera']
specials = ['plugin','lib','components']
artifacts['testsuite'] = ts = ( [ testExecutable(env, dir) for dir in moduledirs if not dir in specials]
artifacts['testsuite'] = ts = ( [ testExecutable(env, dir) for dir in ['lib','components'] ]
+ treatPluginTestcase(env)
+ testCollection(env, 'library')
+ testCollection(env, 'backend')
+ testCollection(env, 'lumiera')
+ [ testCollection(env, dir) for dir in moduledirs if not dir in specials]
)