r51009 - in /packages/unstable/libgdata/debian: changelog rules

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Wed Sep 21 12:19:08 UTC 2016


Author: biebl
Date: Wed Sep 21 12:19:08 2016
New Revision: 51009

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51009
Log:
Set XDG_RUNTIME_DIR to a temporary, writable location. With that the
test-suite should pass, so make failures fatal.

Modified:
    packages/unstable/libgdata/debian/changelog
    packages/unstable/libgdata/debian/rules

Modified: packages/unstable/libgdata/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libgdata/debian/changelog?rev=51009&op=diff
==============================================================================
--- packages/unstable/libgdata/debian/changelog	[utf-8] (original)
+++ packages/unstable/libgdata/debian/changelog	[utf-8] Wed Sep 21 12:19:08 2016
@@ -2,6 +2,8 @@
 
   * New upstream release.
   * Bump debhelper compat level to 10.
+  * Set XDG_RUNTIME_DIR to a temporary, writable location. With that the
+    test-suite should pass, so make failures fatal.
 
  -- Michael Biebl <biebl at debian.org>  Wed, 21 Sep 2016 13:51:03 +0200
 

Modified: packages/unstable/libgdata/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libgdata/debian/rules?rev=51009&op=diff
==============================================================================
--- packages/unstable/libgdata/debian/rules	[utf-8] (original)
+++ packages/unstable/libgdata/debian/rules	[utf-8] Wed Sep 21 12:19:08 2016
@@ -16,10 +16,10 @@
 override_dh_makeshlibs:
 	dh_makeshlibs -- -c4
 
+CHECK_HOME = $(CURDIR)/debian/tmp/home
+
 override_dh_auto_test:
 ifeq (, $(filter nocheck, $(DEB_BUILD_OPTIONS)))
-	$(MAKE) check || ( \
-		echo "=== test-suite.log ===" && \
-		cat gdata/tests/test-suite.log && \
-		echo "======================" || true )
+	mkdir -p $(CHECK_HOME)
+	env XDG_RUNTIME_DIR=$(CHECK_HOME) $(MAKE) check VERBOSE=1
 endif




More information about the pkg-gnome-commits mailing list