From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#21280: test failures: nar, syscalls, containers Date: Tue, 18 Aug 2015 23:54:44 +0200 Message-ID: <87si7gfejf.fsf@gnu.org> References: <1439783007.1743108.357849649.18351DEC@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRoqW-0001ot-JS for bug-guix@gnu.org; Tue, 18 Aug 2015 17:55:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRoqV-0000mp-6C for bug-guix@gnu.org; Tue, 18 Aug 2015 17:55:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRoqV-0000mD-21 for bug-guix@gnu.org; Tue, 18 Aug 2015 17:55:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1ZRoqU-00074R-Nv for bug-guix@gnu.org; Tue, 18 Aug 2015 17:55:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <1439783007.1743108.357849649.18351DEC@webmail.messagingengine.com> (Leo Famulari's message of "Sun, 16 Aug 2015 23:43:27 -0400") 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: Leo Famulari Cc: 21280@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Leo Famulari skribis: > %%%% Starting test nar (Writing full log to "nar.log") > tests/nar.scm:202: FAIL write-file + restore-file > tests/nar.scm:219: FAIL write-file + restore-file with symlinks What is the file system of /home/leo/work/guix (see the output of the =E2=80=98mount=E2=80=99 command)? Could you apply this patch (copy it to a file and run =E2=80=9Cpatch -p1 < the-patch=E2=80=9D from the top-level source directory= ): --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/tests/nar.scm b/tests/nar.scm index b8e50c7..a47d522 100644 --- a/tests/nar.scm +++ b/tests/nar.scm @@ -211,6 +211,11 @@ (cut write-file input <>)) (call-with-input-file nar (cut restore-file <> output)) + (setvbuf (current-output-port) _IONBF) + (system (string-append "find " input "|xargs stat -c '%n %s'|sort")) + (display "\n-----------\n") + (system (string-append "find " output "|xargs stat -c '%n %s'|sort")) + (display "\n+++++++++++\n") (file-tree-equal? input output)) (lambda () (false-if-exception (delete-file nar)) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable and then run =E2=80=9Cmake check TESTS=3Dtests/nar.scm=E2=80=9D from the to= p-level build directory, and post both the top-level =E2=80=98nar.log=E2=80=99 file and =E2=80=98tests/nar.log=E2=80=99? Thanks in advance! Ludo=E2=80=99. --=-=-=--