1
1

torture: Give sshd at least 100ms to start.

This should avoid some 'No route to host' errors.

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Andreas Schneider 2018-06-30 14:59:11 +02:00
родитель 6dd9303729
Коммит f4408f38a3

Просмотреть файл

@ -725,8 +725,8 @@ void torture_setup_sshd_server(void **state)
rc = system(sshd_start_cmd);
assert_return_code(rc, errno);
/* Give the process some time to start */
usleep(10000);
/* Give the process 100ms time to initialize and start */
usleep(100 * 1000);
setenv("SOCKET_WRAPPER_DEFAULT_IFACE", "21", 1);
unsetenv("PAM_WRAPPER");