summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2010-04-24 14:01:05 -0700
committerDaniel Burrows <dburrows@debian.org>2010-04-24 14:01:05 -0700
commit882e62b0bf7dbaf6a49640152dba31733ee81813 (patch)
tree966331be05b5d6d4d69c7d3d07ff0f903640dd74 /SConstruct
parent42eea8ac2a6dd4f9c916599b6103e77221fe9ab7 (diff)
downloadaptitude-882e62b0bf7dbaf6a49640152dba31733ee81813.tar.gz
Change build/.../test to build/.../tests to match the source tree.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 1f2ef452..c73733a6 100644
--- a/SConstruct
+++ b/SConstruct
@@ -19,7 +19,7 @@ for variant_env in envs.programs.AllVariantEnvs():
# always have the same number of entries in the two lists.
for cppunit_tests_env, boost_tests_env in zip(envs.cppunit_tests.AllVariantEnvs(), envs.boost_tests.AllVariantEnvs()):
Export(cppunit_tests_env = cppunit_tests_env, boost_tests_env = boost_tests_env)
- SConscript(['tests/SConscript'], variant_dir = 'build/%s/test' % variant_env.GetVariantName())
+ SConscript(['tests/SConscript'], variant_dir = 'build/%s/tests' % variant_env.GetVariantName())
AlwaysBuild('test')
# For convenience, make "scons check" the same as "make check".
Alias('check', 'test')