From 7d6a0bc558bdfe5c3ca2b6e1638d1d4f31d2d8e1 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 2 Jul 2012 12:13:54 -0700 Subject: Don't use SIGUSR1 under Jython, bug #424259. --- pym/portage/tests/runTests | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'pym') diff --git a/pym/portage/tests/runTests b/pym/portage/tests/runTests index 4c1008708..91984a3a3 100755 --- a/pym/portage/tests/runTests +++ b/pym/portage/tests/runTests @@ -1,18 +1,25 @@ #!/usr/bin/python -Wd # runTests.py -- Portage Unit Test Functionality -# Copyright 2006 Gentoo Foundation +# Copyright 2006-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 import os, sys import os.path as osp import grp +import platform import pwd import signal def debug_signal(signum, frame): import pdb pdb.set_trace() -signal.signal(signal.SIGUSR1, debug_signal) + +if platform.python_implementation() == 'Jython': + debug_signum = signal.SIGUSR2 # bug #424259 +else: + debug_signum = signal.SIGUSR1 + +signal.signal(debug_signum, debug_signal) # Pretend that the current user's uid/gid are the 'portage' uid/gid, # so things go smoothly regardless of the current user and global -- cgit v1.2.3-1-g7c22