Skip to content

Commit 83f4ab4

Browse files
BenHuddlestondaverigby
authored andcommitted
MB-35655: Disable DelVBucket race test on Windows + Magma
The test is currently failing often when run against magma on Windows. Change-Id: If321c3b022ab89b6823a733f9435c24799662109 Reviewed-on: http://review.couchbase.org/113708 Reviewed-by: Dave Rigby <[email protected]> Tested-by: Build Bot <[email protected]>
1 parent 733e432 commit 83f4ab4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

engines/ep/tests/module_tests/kvstore_test.cc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2286,6 +2286,15 @@ TEST_P(KVStoreParamTest, TestDataStoredInTheRightVBucket) {
22862286
// Expect ThreadSanitizer to pick this.
22872287
// Rocks has race condition issues
22882288
TEST_P(KVStoreParamTestSkipRocks, DelVBucketConcurrentOperationsTest) {
2289+
// MB-35655:
2290+
// This test is currently failing (appears to be timing out) often on
2291+
// Windows when run against magma. Disabling whilst a solution is found to
2292+
// not impact development.
2293+
#ifdef WIN32
2294+
if (kvstoreConfig->getBackend() == "magma") {
2295+
return;
2296+
}
2297+
#endif
22892298
WriteCallback wc;
22902299
std::atomic<bool> stop{false};
22912300
std::atomic<uint32_t> deletes{0};

0 commit comments

Comments
 (0)