Skip to content

Commit

Permalink
Disable WriteUnPrepared stress tests (facebook#5315)
Browse files Browse the repository at this point in the history
Summary:
They are kind of flaky at the moment. Will re-enable it when flakiness is fixed.
Pull Request resolved: facebook#5315

Differential Revision: D15382744

Pulled By: maysamyabandeh

fbshipit-source-id: 8b2f9d81a4bb34bfd51481727a682d5cd063c5e3
  • Loading branch information
Maysam Yabandeh authored and facebook-github-bot committed May 16, 2019
1 parent f82e693 commit c71f5bb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions utilities/transactions/transaction_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,7 @@ INSTANTIATE_TEST_CASE_P(
std::make_tuple(false, false, WRITE_PREPARED, kOrderedWrite, false),
std::make_tuple(false, false, WRITE_PREPARED, kOrderedWrite, true),
std::make_tuple(false, true, WRITE_PREPARED, kOrderedWrite, false),
std::make_tuple(false, true, WRITE_PREPARED, kOrderedWrite, true),
std::make_tuple(false, false, WRITE_UNPREPARED, kOrderedWrite, false),
std::make_tuple(false, false, WRITE_UNPREPARED, kOrderedWrite, true),
std::make_tuple(false, true, WRITE_UNPREPARED, kOrderedWrite, false),
std::make_tuple(false, true, WRITE_UNPREPARED, kOrderedWrite, true)));
std::make_tuple(false, true, WRITE_PREPARED, kOrderedWrite, true)));
#endif // ROCKSDB_VALGRIND_RUN

TEST_P(TransactionTest, DoubleEmptyWrite) {
Expand Down

0 comments on commit c71f5bb

Please sign in to comment.