From 8389b036914d3be02da85ee2d4d8166e729c347f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 13 Aug 2010 22:02:09 -0700 Subject: Add a SIGUSR1 handling to trigger pdb.set_trace(). --- pym/portage/tests/runTests | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pym') diff --git a/pym/portage/tests/runTests b/pym/portage/tests/runTests index 05dd773c9..6b3311d28 100755 --- a/pym/portage/tests/runTests +++ b/pym/portage/tests/runTests @@ -7,6 +7,12 @@ import os, sys import os.path as osp import grp import pwd +import signal + +def debug_signal(signum, frame): + import pdb + pdb.set_trace() +signal.signal(signal.SIGUSR1, 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