Skip to content

Commit 35bf38d

Browse files
authored
Merge pull request #28983 from redpanda-data/manual-backport-28566-v25.2.x-68
[v25.2.x] `misc`: skip death tests
2 parents ae4b81e + 5141737 commit 35bf38d

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/v/compression/tests/lz4_buf_tests.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ TEST(MixedAllocations, CustomAllocator) {
8383
}
8484

8585
TEST(MaxBufSizeDeathTest, CustomAllocator) {
86+
GTEST_SKIP()
87+
<< "TODO(death_tests): re-enable when death tests are made stable in CI.";
8688
auto b = compression::lz4_decompression_buffers{4_MiB, 128_KiB + 1};
8789
auto allocator = b.custom_mem_alloc();
8890
ASSERT_DEATH(

src/v/storage/mvlog/tests/file_test.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,8 @@ TEST_F_CORO(FileTest, TestAppend) {
148148

149149
using FileDeathTest = FileTest;
150150
TEST_F(FileDeathTest, TestAppendAfterClose) {
151+
GTEST_SKIP()
152+
<< "TODO(death_tests): re-enable when death tests are made stable in CI.";
151153
const auto path = test_path("foo");
152154
auto created = file_mgr_->create_file(path).get();
153155
created->close().get();
@@ -160,6 +162,8 @@ TEST_F(FileDeathTest, TestAppendAfterClose) {
160162
}
161163

162164
TEST_F(FileDeathTest, TestStreamAfterClose) {
165+
GTEST_SKIP()
166+
<< "TODO(death_tests): re-enable when death tests are made stable in CI.";
163167
const auto path = test_path("foo");
164168
auto created = file_mgr_->create_file(path).get();
165169
auto buf = tests::random_iobuf();

src/v/test_utils/tests/test_utils_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ TEST(test_utils_test, test_macros_pass) {
3030
}
3131

3232
TEST(test_utils_test, test_macros_fail) {
33+
GTEST_SKIP()
34+
<< "TODO(death_tests): re-enable when death tests are made stable in CI.";
3335
ASSERT_DEATH(RPTEST_FAIL("fail message"), "fail message");
3436
ASSERT_DEATH(RPTEST_ADD_FAIL("fail message"), "fail message");
3537
ASSERT_DEATH(RPTEST_FAIL_CORO("fail message"), "fail message");

0 commit comments

Comments
 (0)