summaryrefslogtreecommitdiff
path: root/src/mongo/unittest/SConscript
diff options
context:
space:
mode:
authorShaun Verch <shaun.verch@10gen.com>2013-11-04 22:42:10 -0500
committerShaun Verch <shaun.verch@10gen.com>2013-11-09 15:48:44 -0500
commit989fd71aa5931a61f2028e51b3ffc2b144cd9cfa (patch)
tree994b2fd32227efcde3097e699b16e8920b6410ae /src/mongo/unittest/SConscript
parent151237b24af3a2f5a2a2076b651f4e5745cc45f9 (diff)
downloadmongo-989fd71aa5931a61f2028e51b3ffc2b144cd9cfa.tar.gz
SERVER-11637: Consolidate unittest crutches into crutch.cpp
Diffstat (limited to 'src/mongo/unittest/SConscript')
-rw-r--r--src/mongo/unittest/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/unittest/SConscript b/src/mongo/unittest/SConscript
index 6548a8e3982..314f1c7855a 100644
--- a/src/mongo/unittest/SConscript
+++ b/src/mongo/unittest/SConscript
@@ -2,13 +2,13 @@
Import("env")
-env.StaticLibrary("unittest", ['unittest.cpp', 'temp_dir.cpp'],
- LIBDEPS=['$BUILD_DIR/mongo/foundation',
# TODO(sverch): 'lasterror' should not be required by 'foundation'. Even if it is it should be
# depended on directly rather than here, but we currently have a triangle dependency between
# 'network', 'foundation' and 'lasterror'. assert_util.cpp depends on lasterror.cpp which depends
# on sock.cpp which depends on assert_util.cpp. Eventually we want to have an assertion library
# that does not depend on internal server code, and then this can go away.
+env.StaticLibrary("unittest", ['unittest.cpp', 'temp_dir.cpp'],
+ LIBDEPS=['$BUILD_DIR/mongo/foundation',
'$BUILD_DIR/mongo/lasterror',
])