]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/test/run-01-start-finish.c
io: fix maybe-uninitialized warning in test (-O2)
[ccan] / ccan / io / test / run-01-start-finish.c
index 7c6ae4155f3b052202d6dfb55f02c0b77f28479d..04952db88e5ce9e3d65c9cadb57fee5e4730e001 100644 (file)
@@ -6,18 +6,32 @@
 #include <sys/wait.h>
 #include <stdio.h>
 
-static struct io_plan start_ok(struct io_conn *conn, int *state)
+#ifdef DEBUG_CONN
+#define PORT "64001"
+#else
+#define PORT "65001"
+#endif
+static int expected_fd;
+
+static void finish_ok(struct io_conn *conn, int *state)
 {
-       ok1(*state == 0);
+       ok1(*state == 1);
+       ok1(io_conn_fd(conn) == expected_fd);
        (*state)++;
-       return io_close(conn, NULL);
+       io_break(state + 1);
 }
 
-static void finish_ok(struct io_conn *conn, int *state)
+static struct io_plan *init_conn(struct io_conn *conn, int *state)
 {
-       ok1(*state == 1);
+#ifdef DEBUG_CONN
+       io_set_debug(conn, true);
+#endif
+       ok1(*state == 0);
        (*state)++;
-       io_break(conn, state + 1, NULL, NULL);
+       expected_fd = io_conn_fd(conn);
+       io_set_finish(conn, finish_ok, state);
+
+       return io_close(conn);
 }
 
 static int make_listen_fd(const char *port, struct addrinfo **info)
@@ -55,15 +69,15 @@ static int make_listen_fd(const char *port, struct addrinfo **info)
 int main(void)
 {
        int state = 0;
-       struct addrinfo *addrinfo;
+       struct addrinfo *addrinfo = NULL;
        struct io_listener *l;
        int fd;
 
        /* This is how many tests you plan to run */
-       plan_tests(9);
-       fd = make_listen_fd("65001", &addrinfo);
+       plan_tests(10);
+       fd = make_listen_fd(PORT, &addrinfo);
        ok1(fd >= 0);
-       l = io_new_listener(fd, start_ok, finish_ok, &state);
+       l = io_new_listener(NULL, fd, init_conn, &state);
        ok1(l);
        fflush(stdout);
        if (!fork()) {
@@ -79,7 +93,7 @@ int main(void)
                exit(0);
        }
        freeaddrinfo(addrinfo);
-       ok1(io_loop() == &state + 1);
+       ok1(io_loop(NULL, NULL) == &state + 1);
        ok1(state == 2);
        io_close_listener(l);
        ok1(wait(&state));