commit c6127c195e03fe3cf5aee4c4501b6a46f317d21e from: Sergey Bronnikov via: Vladimir Davydov date: Fri Sep 13 07:54:49 2024 UTC test: disable flaky testcases in http_client_test The testcase "http_client.sock_family:\"AF_UNIX\".test_follow_location" is flaky in each run of `release_clang_asan` and `debug_asan_clang` workflows. Disabling a single testcase does not help. The patch disables a group of testcases executed with Unix domain socket. Needed for #9854 NO_CHANGELOG=testing NO_DOC=testing (cherry picked from commit 8fae8004f79ecd555537960c60c6e646b037c4cc) commit - 058bc3ccca0e1d6482ff018285b8d2bb9e163e21 commit + c6127c195e03fe3cf5aee4c4501b6a46f317d21e blob - 646d80ba1d9a7ae1529ade58710e940cced9016d blob + 0dcc519549ab9037f647d84fe4739a24e765ef35 --- test/app-luatest/http_client_test.lua +++ test/app-luatest/http_client_test.lua @@ -59,6 +59,7 @@ local function start_server(sock_family) end g.before_each(function(cg) + t.skip_if(cg.params.sock_family == 'AF_UNIX', "gh-9854") local sock_family = cg.params.sock_family cg.server, cg.url, cg.opts = start_server(sock_family) end)