Skip to content

Commit 4e12566

Browse files
committed
test: skip test that is flaky on i386
1 parent 5a897b0 commit 4e12566

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

test/tool_main_test.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3125,6 +3125,10 @@ TEST(mkdwarfs_test, map_file_error) {
31253125
class map_file_error_test : public testing::TestWithParam<char const*> {};
31263126

31273127
TEST_P(map_file_error_test, delayed) {
3128+
#if defined(__linux__) && defined(__i386__)
3129+
GTEST_SKIP() << "this test is flaky on i386 Linux (SIGPIPE)";
3130+
#endif
3131+
31283132
std::string extra_args{GetParam()};
31293133

31303134
auto t = mkdwarfs_tester::create_empty();

0 commit comments

Comments
 (0)