From 62965d828e1b70a8907ca27fe32f2d25289c0cb6 Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Tue, 16 Sep 2025 11:19:51 -0700 Subject: [PATCH] Enable ipv6 in testing. Instead of using 127.0.0.1, we initialize the quorum slots to ::1, enabling all ipv6 support. Signed-off-by: Auke Kok --- tests/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 3a6f0377..a2fc1787 100755 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -383,7 +383,7 @@ fi quo="" if [ -n "$T_MKFS" ]; then for i in $(seq -0 $((T_QUORUM - 1))); do - quo="$quo -Q $i,127.0.0.1,$((T_TEST_PORT + i))" + quo="$quo -Q $i,::1,$((T_TEST_PORT + i))" done msg "making new filesystem with $T_QUORUM quorum members"