From: Joey Hess Date: Thu, 1 May 2008 23:53:43 +0000 (-0400) Subject: dh_test*: inhibit logging. Closes: #478958 X-Git-Tag: 7.0.5^0 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=50a10f8c0419a63867ad72d9c4345b848f624568;p=debhelper.git dh_test*: inhibit logging. Closes: #478958 --- diff --git a/debian/changelog b/debian/changelog index b187086..2914823 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ -debhelper (7.0.5) UNRELEASED; urgency=low +debhelper (7.0.5) unstable; urgency=low * Convert copyright file to new format. + * dh_test*: inhibit logging. Closes: #478958 - -- Joey Hess Wed, 30 Apr 2008 18:19:13 -0400 + -- Joey Hess Thu, 01 May 2008 19:52:00 -0400 debhelper (7.0.4) unstable; urgency=low diff --git a/dh_testdir b/dh_testdir index 451b9ae..67ab9ea 100755 --- a/dh_testdir +++ b/dh_testdir @@ -33,6 +33,7 @@ Test for the existence of these files too. =cut init(); +inhibit_log(); foreach my $file ('debian/control', @ARGV) { if (! -e $file) { diff --git a/dh_testroot b/dh_testroot index 3468476..717d884 100755 --- a/dh_testroot +++ b/dh_testroot @@ -18,6 +18,7 @@ L use strict; use Debian::Debhelper::Dh_Lib; +inhibit_log(); if ($< != 0) { error("You must run this as root (or use fakeroot)."); diff --git a/dh_testversion b/dh_testversion index a17f22e..9c1c391 100755 --- a/dh_testversion +++ b/dh_testversion @@ -51,6 +51,7 @@ specified, dh_testversion does nothing. =cut init(); +inhibit_log(); my($compare, $ver);