test: skip test that is flaky on i386

This commit is contained in:
Marcus Holland-Moritz 2025-07-26 19:38:46 +02:00
parent 141ea63f52
commit 5027c12f78

View File

@ -2990,6 +2990,10 @@ TEST(mkdwarfs_test, map_file_error) {
class map_file_error_test : public testing::TestWithParam<char const*> {};
TEST_P(map_file_error_test, delayed) {
#if defined(__linux__) && defined(__i386__)
GTEST_SKIP() << "this test is flaky on i386 Linux (SIGPIPE)";
#endif
std::string extra_args{GetParam()};
auto t = mkdwarfs_tester::create_empty();