summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/SConscript
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2015-03-25 12:25:04 -0400
committerMathias Stearn <mathias@10gen.com>2015-04-09 11:35:56 -0400
commitdb59e0f31b12966f127bf39df5674e3239c57350 (patch)
tree70699492e09cb72c3d7a0654e74107e512a990ad /src/mongo/db/storage/SConscript
parent8b31673665dd2a9d38e4b65ea880fc49acc0bd81 (diff)
downloadmongo-db59e0f31b12966f127bf39df5674e3239c57350.tar.gz
SERVER-17635 Improve SortedDataInterface::Cursor API
Major changes: * Implementation now responsible for simple end point checking. * No way to ask for current position. Relocating methods now return position. * Simplified seeking methods so they have clear uses. * Callers can use saveUnpositioned to indicate they don't care about position.
Diffstat (limited to 'src/mongo/db/storage/SConscript')
-rw-r--r--src/mongo/db/storage/SConscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mongo/db/storage/SConscript b/src/mongo/db/storage/SConscript
index cefbcf752f5..2627532afbd 100644
--- a/src/mongo/db/storage/SConscript
+++ b/src/mongo/db/storage/SConscript
@@ -42,7 +42,6 @@ env.Library(
'sorted_data_interface_test_cursor.cpp',
'sorted_data_interface_test_cursor_advanceto.cpp',
'sorted_data_interface_test_cursor_locate.cpp',
- 'sorted_data_interface_test_cursor_position.cpp',
'sorted_data_interface_test_cursor_saverestore.cpp',
'sorted_data_interface_test_dupkeycheck.cpp',
'sorted_data_interface_test_fullvalidate.cpp',
@@ -53,9 +52,11 @@ env.Library(
'sorted_data_interface_test_spaceused.cpp',
'sorted_data_interface_test_touch.cpp',
'sorted_data_interface_test_unindex.cpp',
- ],
- LIBDEPS=[]
- )
+ ],
+ LIBDEPS=[
+ 'index_entry_comparison',
+ ],
+)
env.Library(
target='record_store_test_harness',