From: Simon McVittie Date: Mon, 4 Jun 2018 15:27:49 +0000 (+0100) Subject: server-oom test: Don't assume localhost is resolvable X-Git-Tag: dbus-1.12.10~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44027e9ec6183ed3744d786d04048b5c7733934e;p=thirdparty%2Fdbus.git server-oom test: Don't assume localhost is resolvable Pathological autobuilder environments might not list localhost in /etc/hosts. Signed-off-by: Simon McVittie Reviewed-by: Philip Withnall Bug: https://bugs.freedesktop.org/show_bug.cgi?id=106812 (cherry picked from commit 4cfc7de30de7111f589501e5b597063aeb96cf28) --- diff --git a/test/internals/server-oom.c b/test/internals/server-oom.c index e006d9fbe..9aeadd342 100644 --- a/test/internals/server-oom.c +++ b/test/internals/server-oom.c @@ -120,10 +120,10 @@ main (int argc, test_init (&argc, &argv); test_cases_to_free = g_queue_new (); - add_oom_test ("/server/new-tcp", test_new_server, "tcp:host=localhost,bind=localhost"); - add_oom_test ("/server/new-nonce-tcp", test_new_server, "nonce-tcp:host=localhost,bind=localhost"); - add_oom_test ("/server/new-tcp-star", test_new_server, "tcp:host=localhost,bind=*"); - add_oom_test ("/server/new-tcp-v4", test_new_server, "tcp:host=localhost,bind=localhost,family=ipv4"); + add_oom_test ("/server/new-tcp", test_new_server, "tcp:host=127.0.0.1,bind=127.0.0.1"); + add_oom_test ("/server/new-nonce-tcp", test_new_server, "nonce-tcp:host=127.0.0.1,bind=127.0.0.1"); + add_oom_test ("/server/new-tcp-star", test_new_server, "tcp:host=127.0.0.1,bind=*"); + add_oom_test ("/server/new-tcp-v4", test_new_server, "tcp:host=127.0.0.1,bind=127.0.0.1,family=ipv4"); #ifdef DBUS_UNIX add_oom_test ("/server/unix", test_new_server, "unix:tmpdir=/tmp"); #endif