From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: 04/07: gnu: strace: Update to 5.2. Date: Mon, 05 Aug 2019 12:31:57 -0400 Message-ID: <878ss7a7zb.fsf@netris.org> References: <20190804160223.1357.19402@vcs0.savannah.gnu.org> <20190804160224.A29E4209DE@vcs0.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:36453) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hufu8-00043a-H4 for guix-devel@gnu.org; Mon, 05 Aug 2019 12:32:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hufu7-0002wg-4N for guix-devel@gnu.org; Mon, 05 Aug 2019 12:32:12 -0400 Received: from world.peace.net ([64.112.178.59]:59900) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hufu7-0002wY-0S for guix-devel@gnu.org; Mon, 05 Aug 2019 12:32:11 -0400 In-Reply-To: <20190804160224.A29E4209DE@vcs0.savannah.gnu.org> (guix-commits@gnu.org's message of "Sun, 4 Aug 2019 12:02:24 -0400 (EDT)") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Marius Bakke Cc: guix-devel@gnu.org Hi Marius, guix-commits@gnu.org writes: > mbakke pushed a commit to branch master > in repository guix. > > commit 2e2db09280d114bbdd0744c73d02aa5c40abdf4a > Author: Marius Bakke > Date: Sun Aug 4 16:22:20 2019 +0200 > > gnu: strace: Update to 5.2. This new version of strace failed to build twice in a row on my Thinkpad X200 running the Guix system and Linux-libre 5.2.5. I've not yet made a third attempt. strace-5.1 has always built successfully on this system. Specifically, strace-5.2 fails 4 of its tests on my system. See below for the relevant entries from tests/test-suite.log. Mark --8<---------------cut here---------------start------------->8--- FAIL: ipc_msgbuf-Xraw.gen ========================= msgget\(0, 0x200\|0700\) = 26 msgsnd\(26, \{9199991941521739245, "STRACE_STRING\\0"\}, 14, 0\) = 0 msgrcv\(26, \{9199991941521739245, "STRACE_STRING\\0"\}, 14, -9199991941521739245, 0\) = 14 msgctl\(26, (0x100\|)?0, NULL\) = 0 \+\+\+ exited with 0 \+\+\+ Failed patterns of expected output: #4: msgctl\(27, (0x100\|)?0, NULL\) = 0 Actual output: msgget(0, 0x200|0700) = 27 msgsnd(27, {9199991941521739245, "STRACE_STRING\0"}, 14, 0) = 0 msgrcv(27, {9199991941521739245, "STRACE_STRING\0"}, 14, -9199991941521739245, 0) = 14 msgctl(27, 0, NULL) = 0 +++ exited with 0 +++ ipc_msgbuf-Xraw.gen.test: failed test: ../../strace -a26 -v -e msgget,msgsnd,msgrcv,msgctl -Xraw -a22 ../ipc_msgbuf-Xraw output mismatch FAIL ipc_msgbuf-Xraw.gen.test (exit status: 1) FAIL: ipc_shm.gen ================= Failed patterns of expected output: #15: shmctl\(11, (IPC_64\|)?IPC_RMID, NULL\) = 0 Actual output: shmget(0xfdb97531, 16051074064915160786, 000) = -1 ENOENT (No such file or directory) shmget(0xfdb97531, 16051074064915160786, 21<8---