From bd7c05b6690ab5b481942e73cd07f5c32e581646 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Fri, 26 Dec 2008 22:26:41 +0100 Subject: [PATCH] SCons: fix leftover from the latest directory reorganisations --- tests/SConscript | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/SConscript b/tests/SConscript index 344f36697..761f911b3 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -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] )