diff --git a/test/box/net.box.result b/test/box/net.box.result index 19afc91a37f747effdde15fd04f1fb42fc9868a4..37ac546583498fc28d229ed06c337c5f759e3bb3 100644 --- a/test/box/net.box.result +++ b/test/box/net.box.result @@ -2285,7 +2285,8 @@ test_run:cmd("setopt delimiter ';'") --- - true ... -while test_run:grep_log('default', 'Connection refused', 1000) == nil and +while test_run:grep_log('default', 'Network is unreachable', 1000) == nil and + test_run:grep_log('default', 'Connection refused', 1000) == nil and test_run:grep_log('default', 'Cannot assign requested address', 1000) == nil do fiber.sleep(0.1) end; @@ -2294,7 +2295,8 @@ end; log.info(string.rep('a', 1000)); --- ... -while test_run:grep_log('default', 'Connection refused', 1000) == nil and +while test_run:grep_log('default', 'Network is unreachable', 1000) == nil and + test_run:grep_log('default', 'Connection refused', 1000) == nil and test_run:grep_log('default', 'Cannot assign requested address', 1000) == nil do fiber.sleep(0.1) end; diff --git a/test/box/net.box.test.lua b/test/box/net.box.test.lua index 51bc8c373f32246134974daf258a3e44e29c4bf4..56b656cc5a02febe0432ac8fb216cebcd15880db 100644 --- a/test/box/net.box.test.lua +++ b/test/box/net.box.test.lua @@ -940,12 +940,14 @@ old_log_level = box.cfg.log_level box.cfg{log_level = 6} log.info(string.rep('a', 1000)) test_run:cmd("setopt delimiter ';'") -while test_run:grep_log('default', 'Connection refused', 1000) == nil and +while test_run:grep_log('default', 'Network is unreachable', 1000) == nil and + test_run:grep_log('default', 'Connection refused', 1000) == nil and test_run:grep_log('default', 'Cannot assign requested address', 1000) == nil do fiber.sleep(0.1) end; log.info(string.rep('a', 1000)); -while test_run:grep_log('default', 'Connection refused', 1000) == nil and +while test_run:grep_log('default', 'Network is unreachable', 1000) == nil and + test_run:grep_log('default', 'Connection refused', 1000) == nil and test_run:grep_log('default', 'Cannot assign requested address', 1000) == nil do fiber.sleep(0.1) end;