Skip to content

Commit 4c975a7

Browse files
cbi42facebook-github-bot
authored andcommitted
Disable flaky unit test RoundRobinSubcompactionsAgainstPressureToken (#13416)
Summary: The test is [flaky](https://github.com/facebook/rocksdb/actions/runs/13417174378/job/37480755623?fbclid=IwZXh0bgNhZW0CMTEAAR2pj4E1ua6zMxz4FxnPAPLIz011t1ddjaWPbmFlldfSG7dZGjWGVy-mDkg_aem_40kU2iCmcN93WsmzLZxGsA) and my previous [fix](#13347) did not seem to work. It's likely a test set up issue and disable the test for now since RoundRobin compaction style is not used to reduce some test failure noise. Pull Request resolved: #13416 Test Plan: CI Reviewed By: hx235 Differential Revision: D70002097 Pulled By: cbi42 fbshipit-source-id: afe0f56363501dab2c9dc297bfbe0dff0ac6aeb3
1 parent 5139ff5 commit 4c975a7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

db/db_compaction_test.cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6440,7 +6440,11 @@ TEST_F(DBCompactionTest, PersistRoundRobinCompactCursor) {
64406440
}
64416441
}
64426442

6443-
TEST_P(RoundRobinSubcompactionsAgainstPressureToken, PressureTokenTest) {
6443+
// FIXME: the test is flaky and failing the assertion
6444+
// ASSERT_EQ(num_planned_subcompactions, kNumSubcompactions);
6445+
// It's likely a test set up issue, fix if we are to use RoubdRobin compaction.
6446+
TEST_P(RoundRobinSubcompactionsAgainstPressureToken,
6447+
DISABLED_PressureTokenTest) {
64446448
const int kKeysPerBuffer = 100;
64456449
const int kNumSubcompactions = 2;
64466450
const int kFilesPerLevel = 50;

0 commit comments

Comments
 (0)