aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/index
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/tests/proton/index')
-rw-r--r--searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp b/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
index 8f5d998b77a..d92ac0dcdc2 100644
--- a/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
+++ b/searchcore/src/tests/proton/index/index_writer/index_writer_test.cpp
@@ -124,6 +124,14 @@ TEST_F("require that compactLidSpace is forwarded to index manager", Fixture)
EXPECT_EQUAL(4u, f.mim.compactSerial);
}
+TEST_F("require that old compactLidSpace is not forwarded to index manager", Fixture)
+{
+ f.mim.flushed = 10;
+ f.iw.compactLidSpace(4, 2);
+ EXPECT_EQUAL(0u, f.mim.wantedLidLimit);
+ EXPECT_EQUAL(0u, f.mim.compactSerial);
+}
+
TEST_MAIN()
{
TEST_RUN_ALL();