Skip to content

Commit ba18d0f

Browse files
authored
Merge pull request #162 from TGSAI/intersection_builder
Intersection builder
2 parents c72422b + 483b2ed commit ba18d0f

7 files changed

Lines changed: 1063 additions & 134 deletions

File tree

.github/workflows/cmake_build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,5 @@ jobs:
5151
&& ./mdio_stats_test \
5252
&& ./mdio_utils_trim_test \
5353
&& ./mdio_utils_delete_test \
54-
&& ./mdio_variable_collection_test
54+
&& ./mdio_variable_collection_test \
55+
&& ./mdio_coordinate_selector_test

mdio/CMakeLists.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,3 +334,26 @@ mdio_cc_test(
334334
tensorstore::util_status_testutil
335335
nlohmann_json_schema_validator
336336
)
337+
338+
mdio_cc_test(
339+
NAME
340+
coordinate_selector_test
341+
SRCS
342+
coordinate_selector_test.cc
343+
COPTS
344+
${mdio_DEFAULT_COPTS}
345+
LINKOPTS
346+
${mdio_DEFAULT_LINKOPTS}
347+
DEPS
348+
GTest::gmock_main
349+
tensorstore::driver_array
350+
tensorstore::driver_zarr
351+
tensorstore::driver_json
352+
tensorstore::kvstore_file
353+
tensorstore::tensorstore
354+
tensorstore::stack
355+
tensorstore::index_space_dim_expression
356+
tensorstore::index_space_index_transform
357+
tensorstore::util_status_testutil
358+
nlohmann_json_schema_validator
359+
)

0 commit comments

Comments
 (0)