From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#22153: Make check fails Date: Sun, 13 Dec 2015 12:09:50 +0100 Message-ID: <87oaduy58h.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39841) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a84YT-0000gD-Fh for bug-guix@gnu.org; Sun, 13 Dec 2015 06:11:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a84YQ-0002dQ-96 for bug-guix@gnu.org; Sun, 13 Dec 2015 06:11:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:42300) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a84YQ-0002dM-5T for bug-guix@gnu.org; Sun, 13 Dec 2015 06:11:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84) (envelope-from ) id 1a84YP-0005fz-Vh for bug-guix@gnu.org; Sun, 13 Dec 2015 06:11:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: (Dennis Mungai's message of "Sat, 12 Dec 2015 22:00:17 +0300") 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: Dennis Mungai Cc: 22153@debbugs.gnu.org Hi, Dennis Mungai skribis: > + GUIX_DAEMON_SOCKET=3D/home/administrator/source.build/GCC.buildenv/guix= -0.9.0/t-register-39139/var/guix/guix/daemon-socket/socket > + export NIX_IGNORE_SYMLINK_STORE NIX_STORE_DIR NIX_STATE_DIR NIX_LOG_DIR= NIX_DB_DIR GUIX_DAEMON_SOCKET > ++ echo /home/administrator/source.build/GCC.buildenv/guix-0.9.0/t-regist= er-39139/var/guix/guix/daemon-socket/socket > ++ wc -c > + '[' 109 -ge 108 ']' > + exit 77 The build directory name is very long, which means that we are a likely to hit the kernel=E2=80=99s limitation on the length of socket file names, = as in the snippet above. What does this command: grep ac_cv_guix_test_socket_file_name_length config.log return? At configure time, one normally gets a warning: socket file name limit may be exceeded when running tests (This is not an error because there=E2=80=99s no problem if you don=E2=80= =99t run =E2=80=98make check=E2=80=99.) In your case I think you would have to build from a shorter directory. HTH, Ludo=E2=80=99.