ext/libuv/test/run-tests.c in libuv-1.0.0 vs ext/libuv/test/run-tests.c in libuv-1.0.2
- old
+ new
@@ -37,10 +37,11 @@
#include "test-list.h"
int ipc_helper(int listen_after_write);
int ipc_helper_tcp_connection(void);
int ipc_send_recv_helper(void);
+int ipc_helper_bind_twice(void);
int stdio_over_pipes_helper(void);
static int maybe_run_test(int argc, char **argv);
@@ -78,9 +79,13 @@
return ipc_send_recv_helper();
}
if (strcmp(argv[1], "ipc_helper_tcp_connection") == 0) {
return ipc_helper_tcp_connection();
+ }
+
+ if (strcmp(argv[1], "ipc_helper_bind_twice") == 0) {
+ return ipc_helper_bind_twice();
}
if (strcmp(argv[1], "stdio_over_pipes_helper") == 0) {
return stdio_over_pipes_helper();
}