From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] distro: Add MIT Kerberos 5. Date: Sun, 30 Dec 2012 17:31:44 +0100 Message-ID: <87obhb7b7z.fsf@gnu.org> References: <201212300009.42579.andreas@enge.fr> <87sj6oqslj.fsf@karetnikov.org> <201212301410.39301.andreas@enge.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:46830) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TpLo0-0003Jp-Gl for bug-guix@gnu.org; Sun, 30 Dec 2012 11:32:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TpLny-0006vk-VJ for bug-guix@gnu.org; Sun, 30 Dec 2012 11:32:08 -0500 Received: from mail4-relais-sop.national.inria.fr ([192.134.164.105]:5707) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TpLny-0006vg-Ot for bug-guix@gnu.org; Sun, 30 Dec 2012 11:32:06 -0500 In-Reply-To: <201212301410.39301.andreas@enge.fr> (Andreas Enge's message of "Sun, 30 Dec 2012 14:10:39 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Andreas Enge Cc: bug-guix@gnu.org Hi, Andreas Enge skribis: > Resolve library appears to have passed the test > LD_LIBRARY_PATH=3D`echo -L../../lib | sed -e "s/-L//g" -e "s/ /:/g"`; exp= ort=20 > LD_LIBRARY_PATH; ./addrinfo-test -p telnet > getaddrinfo(hostname (null), service telnet, > hints { no-flags }): > error =3D> Servname not supported for ai_socktype This is because this test relies on the presence of /etc/services when looking up the =E2=80=9Ctelnet=E2=80=9D service by name (which is missing i= n chroots.) Possibilities include: =E2=80=A2 patching the test avoid that (for instance, by changing =E2=80= =98localhost=E2=80=99 to =E2=80=98127.0.0.1=E2=80=99, =E2=80=98telnet=E2=80=99 by =E2=80=9823= =E2=80=99, etc.), unless it would no longer make sense; =E2=80=A2 patching the test machinery to skip the test; =E2=80=A2 turning off all the tests, as a last resort, if they are all re= ally network-dependent. Any idea what would be the most relevant approach here? HTH, Ludo=E2=80=99.