From: Joey Hess <joey@kodama.kitenet.net>
Date: Thu, 1 May 2008 23:53:43 +0000 (-0400)
Subject: dh_test*: inhibit logging. Closes: #478958
X-Git-Tag: 7.0.5
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5de0953fb1266675cbd76d5ccdaeb419c628c9e7;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 <joeyh@debian.org>  Wed, 30 Apr 2008 18:19:13 -0400
+ -- Joey Hess <joeyh@debian.org>  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<fakeroot(1)>
 
 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);