aboutsummaryrefslogtreecommitdiff
path: root/tests/torture.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/torture.c')
-rw-r--r--tests/torture.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/tests/torture.c b/tests/torture.c
index 75db88a1..42e1d74b 100644
--- a/tests/torture.c
+++ b/tests/torture.c
@@ -28,6 +28,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <signal.h>
#ifndef _WIN32
# include <dirent.h>
@@ -820,6 +821,49 @@ void torture_teardown_socket_dir(void **state)
free(s);
}
+void torture_teardown_sshd_server(void **state)
+{
+ struct torture_state *s = *state;
+ char buf[8] = {0};
+ long int tmp;
+ ssize_t rc;
+ pid_t pid;
+ int fd;
+
+ /* read the pidfile */
+ fd = open(s->srv_pidfile, O_RDONLY);
+ if (fd < 0) {
+ goto done;
+ }
+
+ rc = read(fd, buf, sizeof(buf));
+ close(fd);
+ if (rc <= 0) {
+ goto done;
+ }
+
+ buf[sizeof(buf) - 1] = '\0';
+
+ tmp = strtol(buf, NULL, 10);
+ if (tmp == 0 || tmp > 0xFFFF || errno == ERANGE) {
+ goto done;
+ }
+
+ pid = (pid_t)(tmp & 0xFFFF);
+
+ /* Make sure the daemon goes away! */
+ kill(pid, SIGTERM);
+
+ kill(pid, 0);
+ if (rc == 0) {
+ fprintf(stderr,
+ "WARNING the sshd server is still running!\n");
+ }
+
+done:
+ torture_teardown_socket_dir(state);
+}
+
int torture_libssh_verbosity(void){
return verbosity;
}