diff options
| author | Arun Banala <arun.banala@10gen.com> | 2019-10-02 15:27:39 +0000 |
|---|---|---|
| committer | evergreen <evergreen@mongodb.com> | 2019-10-02 15:27:39 +0000 |
| commit | bda366f0b0e432ca143bc41da54d8732bd8d03c0 (patch) | |
| tree | 43b09749ba831ad5f26bf0f8af636cfcb24e2fb4 /src/mongo/util/SConscript | |
| parent | a9674251a5f0fc9785d787f3f7922312c37d4a04 (diff) | |
SERVER-40382 Add a serverStatus metric to report plan cache memory consumptionr4.0.13-rc0r4.0.13
(cherry picked from commit 5105fa2377d3e86b2011691d5acbd8c531113929)
(cherry picked from commit 5eeba7b2c9dda32a37c2c16ca14edd9a9099a996)
Diffstat (limited to 'src/mongo/util/SConscript')
| -rw-r--r-- | src/mongo/util/SConscript | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mongo/util/SConscript b/src/mongo/util/SConscript index 547f379eacc..2456eecf5da 100644 --- a/src/mongo/util/SConscript +++ b/src/mongo/util/SConscript @@ -631,6 +631,26 @@ env.CppUnitTest( ] ) +env.Library( + target='container_size_helper', + source=[ + 'container_size_helper.cpp', + ], + LIBDEPS=[ + '$BUILD_DIR/mongo/base', + ], +) + +env.CppUnitTest( + target='container_size_helper_test', + source=[ + 'container_size_helper_test.cpp', + ], + LIBDEPS=[ + '$BUILD_DIR/mongo/base', + ] +) + env.CppUnitTest( target='producer_consumer_queue_test', source=[ |
