From 46f36fc4e70f740f706826b70903930a16f9e08d Mon Sep 17 00:00:00 2001 From: Wolfgang Hoschek Date: Sat, 4 Jan 2025 11:48:45 +0100 Subject: [PATCH] also test with close_fds = False Signed-off-by: Wolfgang Hoschek --- bzfs_tests/test_integrations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bzfs_tests/test_integrations.py b/bzfs_tests/test_integrations.py index 9d5bf78d..5016c0d3 100755 --- a/bzfs_tests/test_integrations.py +++ b/bzfs_tests/test_integrations.py @@ -776,8 +776,8 @@ def test_ssh_loopback_latency(self): for cmd in [echo_cmd, list_cmd]: cmd = p.split_args(f"{ssh_program} {ssh_opts} 127.0.0.1 {cmd}") for check in [False, True]: - # for close_fds in [False, True]: - for close_fds in [True]: + # for close_fds in [True]: + for close_fds in [False, True]: start_time_nanos = time.time_ns() iters = 0 while time.time_ns() - start_time_nanos < 5 * 1000_000_000: