r40153 - in /packages/unstable/gnome-desktop-testing/debian: changelog control patches/ patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch patches/series
laney at users.alioth.debian.org
laney at users.alioth.debian.org
Mon Oct 28 19:37:01 UTC 2013
Author: laney
Date: Mon Oct 28 19:37:00 2013
New Revision: 40153
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=40153
Log:
debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch:
Backport from upstream to actually exit with a bad status if any tests
fail, rather than 0.
Added:
packages/unstable/gnome-desktop-testing/debian/patches/
packages/unstable/gnome-desktop-testing/debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch
packages/unstable/gnome-desktop-testing/debian/patches/series
Modified:
packages/unstable/gnome-desktop-testing/debian/changelog
packages/unstable/gnome-desktop-testing/debian/control
Modified: packages/unstable/gnome-desktop-testing/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-desktop-testing/debian/changelog?rev=40153&op=diff
==============================================================================
--- packages/unstable/gnome-desktop-testing/debian/changelog [utf-8] (original)
+++ packages/unstable/gnome-desktop-testing/debian/changelog [utf-8] Mon Oct 28 19:37:00 2013
@@ -1,6 +1,12 @@
gnome-desktop-testing (2013.1-2) UNRELEASED; urgency=low
+ [ Jeremy Bicha ]
* Update homepage
+
+ [ Iain Lane ]
+ * debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch:
+ Backport from upstream to actually exit with a bad status if any tests
+ fail, rather than 0.
-- Jeremy Bicha <jbicha at ubuntu.com> Fri, 28 Jun 2013 18:58:52 -0400
Modified: packages/unstable/gnome-desktop-testing/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-desktop-testing/debian/control?rev=40153&op=diff
==============================================================================
--- packages/unstable/gnome-desktop-testing/debian/control [utf-8] (original)
+++ packages/unstable/gnome-desktop-testing/debian/control [utf-8] Mon Oct 28 19:37:00 2013
@@ -6,7 +6,7 @@
Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>
-Uploaders:
+Uploaders: Jeremy Bicha <jbicha at ubuntu.com>
Build-Depends: autotools-dev,
cdbs,
debhelper (>= 8.0.0),
Added: packages/unstable/gnome-desktop-testing/debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-desktop-testing/debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch?rev=40153&op=file
==============================================================================
--- packages/unstable/gnome-desktop-testing/debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch (added)
+++ packages/unstable/gnome-desktop-testing/debian/patches/0001-runner-Exit-with-code-2-if-any-test-failed.patch [utf-8] Mon Oct 28 19:37:00 2013
@@ -0,0 +1,22 @@
+From aa95b24ae91c8be5e2e832fd0c460da06fb710fe Mon Sep 17 00:00:00 2001
+From: Colin Walters <walters at verbum.org>
+Date: Fri, 25 Oct 2013 10:42:51 -0400
+Subject: [PATCH] runner: Exit with code 2 if any test failed
+
+Suggested by Iain Lane for use in Ubuntu Jenkins runner.
+---
+ src/gnome-desktop-testing-runner.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+--- a/src/gnome-desktop-testing-runner.c
++++ b/src/gnome-desktop-testing-runner.c
+@@ -482,6 +482,9 @@
+ g_clear_error (&local_error);
+ return 1;
+ }
++
++ if (app->n_failed_tests > 0)
++ return 2;
+
+ return 0;
+ }
Added: packages/unstable/gnome-desktop-testing/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/gnome-desktop-testing/debian/patches/series?rev=40153&op=file
==============================================================================
--- packages/unstable/gnome-desktop-testing/debian/patches/series (added)
+++ packages/unstable/gnome-desktop-testing/debian/patches/series [utf-8] Mon Oct 28 19:37:00 2013
@@ -0,0 +1 @@
+0001-runner-Exit-with-code-2-if-any-test-failed.patch
More information about the pkg-gnome-commits
mailing list