diff options
author | Billy Donahue <billy.donahue@mongodb.com> | 2020-10-09 20:50:38 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-10-13 19:30:17 +0000 |
commit | ff37b70553dbfd0b2aaeabb8a29c4d492507a9d3 (patch) | |
tree | 728b9266de70d79901eed31b0e39de0abc78cf24 /src/mongo/util/SConscript | |
parent | bbe604a5b3f94f78a30a76941ea89c0ca5db14d2 (diff) | |
download | mongo-ff37b70553dbfd0b2aaeabb8a29c4d492507a9d3.tar.gz |
SERVER-50917 util/ctype.h to replace <cctype> & <ctype.h> funcs
Diffstat (limited to 'src/mongo/util/SConscript')
-rw-r--r-- | src/mongo/util/SConscript | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mongo/util/SConscript b/src/mongo/util/SConscript index 7b4b56c6540..1e759de47dc 100644 --- a/src/mongo/util/SConscript +++ b/src/mongo/util/SConscript @@ -619,6 +619,7 @@ icuEnv.CppUnitTest( 'clock_source_mock_test.cpp', 'concepts_test.cpp', 'container_size_helper_test.cpp', + 'ctype_test.cpp', 'decimal_counter_test.cpp', 'decorable_test.cpp', 'diagnostic_info_test.cpp' if get_option('use-diagnostic-latches') == 'on' else [], @@ -768,3 +769,8 @@ stacktraceEnv.Benchmark( # See above for how to handle any future LIBDEPS additions here. # LIBDEPS=... ) + +env.Benchmark( + target='string_bm', + source='string_bm.cpp', +) |