From efd79fad55845cf71f822cda6b334a2b9eb27baf Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 29 Oct 2013 21:12:57 +1030 Subject: [PATCH] io: fix port clash in test. Both run-set_alloc and run-15-timeout used the same port, so they sometimes got stuck when running in parallel. Signed-off-by: Rusty Russell --- ccan/io/test/run-set_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccan/io/test/run-set_alloc.c b/ccan/io/test/run-set_alloc.c index fd0c83a8..61440056 100644 --- a/ccan/io/test/run-set_alloc.c +++ b/ccan/io/test/run-set_alloc.c @@ -65,7 +65,7 @@ static void freefn(void *ptr) } #ifndef PORT -#define PORT "65015" +#define PORT "65115" #endif struct data { -- 2.39.2