From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: Acl Date: Fri, 7 Nov 2014 23:30:05 +0100 Message-ID: <20141107223005.GA16750@debian> References: <20141105193513.GA30433@debian> <87sihx1iyf.fsf@gnu.org> <20141106213801.GA19209@debian> <20141106220941.GA12694@debian> <87egtf9xsv.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xms2q-0000VA-RS for guix-devel@gnu.org; Fri, 07 Nov 2014 17:30:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xms2j-0003za-CT for guix-devel@gnu.org; Fri, 07 Nov 2014 17:30:16 -0500 Content-Disposition: inline In-Reply-To: <87egtf9xsv.fsf@gnu.org> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?iso-8859-15?Q?Court=E8s?= Cc: guix-devel@gnu.org On Fri, Nov 07, 2014 at 10:15:12AM +0100, Ludovic Courtès wrote: > OK. Could you create the ‘core-updates’ branch and commit it? Done. I have also worked a bit on tests and got them to execute at least. Now a few of the first ones fail like this: [16] $ ls -dl d | awk '{print $1}' | sed 's/.$//g' -- failed drwxr-xr- != drwxr-xr-t [18] $ ls -dl d/u | awk '{print $1}' | sed 's/.$//g' -- failed -rwSr--r- != -rwSr--r-- [20] $ ls -dl d/g | awk '{print $1}' | sed 's/.$//g' -- failed -rw-r-Sr- != -rw-r-Sr-- It looks as if "ls -dl" were expected to output one character more than it does. The tests also fail outside of guix. When I drop the "sed ...", these tests pass, but then others fail. Andreas