r52864 - in /desktop/unstable/glib2.0/debian: changelog rules

laney at users.alioth.debian.org laney at users.alioth.debian.org
Mon Aug 21 14:04:17 UTC 2017


Author: laney
Date: Mon Aug 21 14:04:15 2017
New Revision: 52864

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=52864
Log:
debian/rules: Don't run the tests under fakeroot; it makes them fail with
dbus-related authentication problems.

Modified:
    desktop/unstable/glib2.0/debian/changelog
    desktop/unstable/glib2.0/debian/rules

Modified: desktop/unstable/glib2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glib2.0/debian/changelog?rev=52864&op=diff
==============================================================================
--- desktop/unstable/glib2.0/debian/changelog	[utf-8] (original)
+++ desktop/unstable/glib2.0/debian/changelog	[utf-8] Mon Aug 21 14:04:15 2017
@@ -8,6 +8,8 @@
   * debian/rules: Fix arguments to dh_auto_test so tests are run again
   * debian/rules, debian/control{,.in}: Use dh_missing and not dh_install
     --list-missing. Also upgrade this check to --fail-missing.
+  * debian/rules: Don't run the tests under fakeroot; it makes them fail with
+    dbus-related authentication problems.
 
  -- Iain Lane <laney at debian.org>  Thu, 10 Aug 2017 16:44:13 +0100
 

Modified: desktop/unstable/glib2.0/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glib2.0/debian/rules?rev=52864&op=diff
==============================================================================
--- desktop/unstable/glib2.0/debian/rules	[utf-8] (original)
+++ desktop/unstable/glib2.0/debian/rules	[utf-8] Mon Aug 21 14:04:15 2017
@@ -79,10 +79,10 @@
 
 ifeq ($(DEB_HOST_ARCH_OS), linux)
 override_dh_auto_test:
-	dh_auto_test --builddirectory=debian/build/deb -- -k check -j1
+	env -u LD_PRELOAD dh_auto_test --builddirectory=debian/build/deb -- -k check -j1
 else
 override_dh_auto_test:
-	dh_auto_test --builddirectory=debian/build/deb -- -k check -j1 || true
+	env -u LD_PRELOAD dh_auto_test --builddirectory=debian/build/deb -- -k check -j1 || true
 endif
 
 # The tests assume this directory exists and is writable




More information about the pkg-gnome-commits mailing list