Skip to content

Commit

Permalink
Disable test NodeUpdateTest.UpdateSameRowRedundtanly for in mem mode …
Browse files Browse the repository at this point in the history
…tests (#4911)
  • Loading branch information
royi-luo authored and acquamarin committed Feb 19, 2025
1 parent b3a61ea commit a5eac9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/storage/node_update_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ TEST_F(NodeUpdateTest, UpdateSameRow) {
}

TEST_F(NodeUpdateTest, UpdateSameRowRedundtanly) {
if (inMemMode || systemConfig->checkpointThreshold == 0) {
GTEST_SKIP();
}
ASSERT_TRUE(
conn->query("CREATE NODE TABLE test (id SERIAL PRIMARY KEY, name STRING, prop STRING);")
->isSuccess());
Expand Down

0 comments on commit a5eac9e

Please sign in to comment.