diff options
author | Eliot Horowitz <eliot@10gen.com> | 2012-06-13 14:45:49 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2012-06-13 15:24:31 -0400 |
commit | fc7a84dd03e2d950a719cbadd72c53c6d1e53e79 (patch) | |
tree | 096c62528272ababb63086d0294b5fdfce6ed8cc /site_scons | |
parent | 2111a63b4e36225c47dab62a69cfbe411b70f16c (diff) | |
download | mongo-fc7a84dd03e2d950a719cbadd72c53c6d1e53e79.tar.gz |
put unittess in build/unittests for simpler testing
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/site_tools/unittest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/site_scons/site_tools/unittest.py b/site_scons/site_tools/unittest.py index 81462d4483c..52630455cde 100644 --- a/site_scons/site_tools/unittest.py +++ b/site_scons/site_tools/unittest.py @@ -33,6 +33,7 @@ def build_cpp_unit_test(env, target, source, **kwargs): result = env.Program(target, source, **kwargs) env.RegisterUnitTest(result[0]) + env.Install("#/build/unittests/", target) return result def generate(env): |