[Pkg-mono-svn-commits] [mono] 02/03: Hard kill stray mono processes after each test pass to make the life of buildd admins nicer

Mirco Bauer meebey at moszumanska.debian.org
Thu Jan 16 11:42:23 UTC 2014


This is an automated email from the git hooks/post-receive script.

meebey pushed a commit to branch master-experimental
in repository mono.

commit 68cd63d040d51087e04cda1fe27c7a6d0d7c0be2
Author: Mirco Bauer <meebey at meebey.net>
Date:   Thu Jan 16 10:01:05 2014 +0100

    Hard kill stray mono processes after each test pass to make the life of buildd admins nicer
---
 debian/rules | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/debian/rules b/debian/rules
index 48df8d9..f5622f8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -56,9 +56,10 @@ ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
 	MONO_SGEN_TEST = true
 else
 	TIMEOUT = timeout -k 1h 1h
-	MINI_TEST = cd mono/mini && $(TIMEOUT) make check
-	MONO_BOEHM_TEST = cd mono/tests && MONO_ENV_OPTIONS=--gc=boehm $(TIMEOUT) make test
-	MONO_SGEN_TEST = cd mono/tests && MONO_ENV_OPTIONS=--gc=sgen $(TIMEOUT) make test
+	KILL_MONO = killall -9 mono
+	MINI_TEST = cd mono/mini && $(TIMEOUT) make check; $(KILL_MONO)
+	MONO_BOEHM_TEST = cd mono/tests && MONO_ENV_OPTIONS=--gc=boehm $(TIMEOUT) make test; $(KILL_MONO)
+	MONO_SGEN_TEST = cd mono/tests && MONO_ENV_OPTIONS=--gc=sgen $(TIMEOUT) make test; $(KILL_MONO)
 endif
 ifeq ($(DEB_BUILD_ARCH), powerpc)
 	MONO_SGEN_TEST = true

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mono/packages/mono.git



More information about the Pkg-mono-svn-commits mailing list