summaryrefslogtreecommitdiff
path: root/src/mongo/util/immutable/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/immutable/SConscript')
-rw-r--r--src/mongo/util/immutable/SConscript29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/mongo/util/immutable/SConscript b/src/mongo/util/immutable/SConscript
deleted file mode 100644
index 72e517d93c5..00000000000
--- a/src/mongo/util/immutable/SConscript
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*- mode: python -*-
-
-Import("env")
-
-env = env.Clone()
-
-env.CppUnitTest(
- target='immutable_test',
- source=[
- 'immutable_ordered_test.cpp',
- 'immutable_unordered_test.cpp',
- 'immutable_vector_test.cpp',
- ],
- LIBDEPS=[],
-)
-
-env.Benchmark(
- target='immutable_absl_comparison_bm',
- source=[
- 'immutable_absl_comparison_bm.cpp',
- ],
-)
-
-env.Benchmark(
- target='immutable_std_comparison_bm',
- source=[
- 'immutable_std_comparison_bm.cpp',
- ],
-)