From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Lirzin Subject: [PATCH 1/5] tests: Silence %cpio-program. Date: Thu, 24 Mar 2016 00:38:46 +0100 Message-ID: <1458776330-5005-2-git-send-email-mthl@gnu.org> References: <1458776330-5005-1-git-send-email-mthl@gnu.org> 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]:60719) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aisMu-0007f8-2c for guix-devel@gnu.org; Wed, 23 Mar 2016 19:39:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aisMs-0007sC-A1 for guix-devel@gnu.org; Wed, 23 Mar 2016 19:39:15 -0400 In-Reply-To: <1458776330-5005-1-git-send-email-mthl@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: guix-devel@gnu.org * tests/cpio.scm ("bit-identical to GNU cpio's output"): Silence %cpio-program call to avoid polluting the temporary files. --- tests/cpio.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/cpio.scm b/tests/cpio.scm index cf65f98..b6ae1b2 100644 --- a/tests/cpio.scm +++ b/tests/cpio.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2015 Ludovic Court=C3=A8s +;;; Copyright =C2=A9 2016 Mathieu Lirzin ;;; ;;; This file is part of GNU Guix. ;;; @@ -63,7 +64,7 @@ (call-with-temporary-output-file (lambda (ref-file _) (let ((pipe (open-pipe* OPEN_WRITE %cpio-program "-o" "-O" ref= -file - "-H" "newc" "--null"))) + "-H" "newc" "--null" "--quiet"))) (for-each (lambda (file) (format pipe "~a\0" file)) files) --=20 2.7.0