Skip to content

Commit

Permalink
disable flaky tests (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
ladisgin authored Sep 29, 2022
1 parent c061e27 commit c86eb3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/test/framework/Syntax_Tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1987,7 +1987,7 @@ namespace {
);
}

TEST_F(Syntax_Test, sort_list) {
TEST_F(Syntax_Test, DISABLED_sort_list) {
auto [testGen, status] = createTestForFunction(linked_list_c, 104, 90);

ASSERT_TRUE(status.ok()) << status.error_message();
Expand All @@ -2009,7 +2009,7 @@ namespace {
);
}

TEST_F(Syntax_Test, sort_list_with_cmp) {
TEST_F(Syntax_Test, DISABLED_sort_list_with_cmp) {
auto [testGen, status] = createTestForFunction(linked_list_c, 135, 90);

ASSERT_TRUE(status.ok()) << status.error_message();
Expand Down

0 comments on commit c86eb3a

Please sign in to comment.