Skip to content

Commit

Permalink
disabled some step_epoch test
Browse files Browse the repository at this point in the history
  • Loading branch information
ban-nobuhiro committed Feb 26, 2025
1 parent 9c9783d commit 3605910
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/concurrency_control/epoch_no_stop_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ TEST_F(epoch_no_stop_test, sleep_to_watch_change_epoch) { // NOLINT
}

TEST_F(epoch_no_stop_test, // NOLINT
check_progress_of_step_epoch_by_bg_thread) { // NOLINT
DISABLED_check_progress_of_step_epoch_by_bg_thread) { // NOLINT
Token s{};
ASSERT_EQ(Status::OK, enter(s));
auto* ti{static_cast<session*>(s)};
Expand All @@ -60,7 +60,7 @@ TEST_F(epoch_no_stop_test, // NOLINT
}

TEST_F(epoch_no_stop_test, // NOLINT
check_not_progress_of_step_epoch_if_operating_true) { // NOLINT
DISABLED_check_not_progress_of_step_epoch_if_operating_true) { // NOLINT
Token s{};
ASSERT_EQ(Status::OK, enter(s));
auto* ti{static_cast<session*>(s)};
Expand Down
2 changes: 1 addition & 1 deletion test/concurrency_control/session_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ TEST_F(session_test, member_operating) { // NOLINT
ASSERT_EQ(Status::OK, leave(s));
}

TEST_F(session_test, member_step_epoch_after_each_api) { // NOLINT
TEST_F(session_test, DISABLED_member_step_epoch_after_each_api) { // NOLINT
Token s{};
ASSERT_EQ(Status::OK, enter(s));
// prepare data
Expand Down

0 comments on commit 3605910

Please sign in to comment.