summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2018-11-27 09:40:19 -0500
committerHenrik Edin <henrik.edin@mongodb.com>2018-11-27 09:40:19 -0500
commita83ee33c56dcfc8cdcfa0dd0c458f6fef89a3113 (patch)
treef12ad677325ed7888be9994892e06c5df300ba66 /src
parentbfdb0405d0cbf34361e19ff0fbdf8c44f0d9c448 (diff)
downloadmongo-a83ee33c56dcfc8cdcfa0dd0c458f6fef89a3113.tar.gz
SERVER-37745 Disable hash_table_bm from running on evergreen.
Diffstat (limited to 'src')
-rw-r--r--src/mongo/util/hash_table_bm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/util/hash_table_bm.cpp b/src/mongo/util/hash_table_bm.cpp
index 9793f979e0f..5b86a85d6f3 100644
--- a/src/mongo/util/hash_table_bm.cpp
+++ b/src/mongo/util/hash_table_bm.cpp
@@ -314,7 +314,8 @@ static void Range(benchmark::internal::Benchmark* b) {
}
-// Integer key tests BENCHMARK_TEMPLATE(BM_SuccessfulLookup, StdUnorderedInt)->Apply(Range);
+// Integer key tests
+BENCHMARK_TEMPLATE(BM_SuccessfulLookup, StdUnorderedInt)->Apply(Range);
BENCHMARK_TEMPLATE(BM_SuccessfulLookup, MongoUnorderedFastKeyTableInt)->Apply(Range);
BENCHMARK_TEMPLATE(BM_SuccessfulLookup, AbslFlatHashMapInt)->Apply(Range);
BENCHMARK_TEMPLATE(BM_SuccessfulLookup, AbslNodeHashMapInt)->Apply(Range);