summaryrefslogtreecommitdiff
path: root/src/mongo/db/timeseries/SConscript
diff options
context:
space:
mode:
authorDianna Hohensee <dianna.hohensee@mongodb.com>2021-03-08 12:46:37 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-03-12 02:55:04 +0000
commit85b600eec7f060e1a2f52dcdc8e4cde06508415a (patch)
treed81d3d2496ec99fc2a7adf0b3eb394876b63cd4c /src/mongo/db/timeseries/SConscript
parent0757d14ea960b2a30f2b84423551422e5980e41e (diff)
downloadmongo-85b600eec7f060e1a2f52dcdc8e4cde06508415a.tar.gz
SERVER-54978 Unit test helper functions that convert index specs between underlying buckets
collection and time-series collection schema
Diffstat (limited to 'src/mongo/db/timeseries/SConscript')
-rw-r--r--src/mongo/db/timeseries/SConscript24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/mongo/db/timeseries/SConscript b/src/mongo/db/timeseries/SConscript
index 7173d429cd6..f29429a001e 100644
--- a/src/mongo/db/timeseries/SConscript
+++ b/src/mongo/db/timeseries/SConscript
@@ -28,17 +28,6 @@ env.Library(
],
)
-env.CppUnitTest(
- target='bucket_catalog_test',
- source=[
- 'bucket_catalog_test.cpp',
- ],
- LIBDEPS=[
- '$BUILD_DIR/mongo/db/catalog/catalog_test_fixture',
- 'bucket_catalog',
- ],
-)
-
env.Library(
target='timeseries_index_schema_conversion_functions',
source=[
@@ -54,3 +43,16 @@ env.Library(
'$BUILD_DIR/mongo/db/views/views',
],
)
+
+env.CppUnitTest(
+ target='db_timeseries_test',
+ source=[
+ 'bucket_catalog_test.cpp',
+ 'timeseries_index_schema_conversion_functions_test.cpp',
+ ],
+ LIBDEPS=[
+ '$BUILD_DIR/mongo/db/catalog/catalog_test_fixture',
+ 'bucket_catalog',
+ 'timeseries_index_schema_conversion_functions',
+ ],
+)