summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_signal.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-6/+6
* Merged revisions 85586-85587,85596-85598 via svnmerge fromGregory P. Smith2010-10-171-2/+2
* Merged revisions 85140 via svnmerge fromBrian Curtin2010-10-011-6/+6
* Merged revisions 84556 via svnmerge fromBrian Curtin2010-09-061-3/+2
* Merged revisions 83771 via svnmerge fromBrian Curtin2010-08-071-6/+6
* Merge of r83763 introduced 'support' into test_signal; should be 'test_support'Mark Dickinson2010-08-061-2/+2
* Merged revisions 83763 via svnmerge fromBrian Curtin2010-08-061-5/+28
* use TestCase skip methodBenjamin Peterson2010-05-151-4/+4
* If the timeout is exceeded, count the tests as skipped instead of justStefan Krah2010-05-151-6/+4
* Skip signal handler re-installation if it is not necessary. Issue 8354.Jean-Paul Calderone2010-05-081-18/+75
* 1) The timeout in the itimer tests was too low for slow or heavilyStefan Krah2010-04-201-11/+13
* Issue #3864: Skip three test_signal tests on freebsd6 due to platform bug.R. David Murray2010-04-171-0/+10
* Add extra information to a test_signal failure message to aid diagnosis of bu...Mark Dickinson2009-11-091-1/+3
* Issue #7042: Use a better mechanism for testing timers in test_signal.Mark Dickinson2009-10-311-2/+10
* Issue #7042: Fix test_signal failure on OS X 10.6 64-bit buildsMark Dickinson2009-10-041-0/+2
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-3/+3
* #6276: Remove usage of nested() in favor of new with statement with multiple ...Georg Brandl2009-06-181-3/+3
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-1/+1
* Add enough debugging information to diagnose failures where theJeffrey Yasskin2008-04-061-5/+14
* Oops again. EINTR is in errno, not signal.Jeffrey Yasskin2008-04-041-1/+1
* Doh! os.read() raises an OSError, not an IOError when it's interrupted.Jeffrey Yasskin2008-04-041-2/+5
* Try to make test_signal less flaky. I still see some flakiness inJeffrey Yasskin2008-04-021-6/+24
* Try to get this test to be more stable:Neal Norwitz2008-03-251-4/+15
* Patch #2240: Implement signal.setitimer and signal.getitimer.Martin v. Löwis2008-03-241-1/+85
* Try to fix test_signal on FreeBSD. I'm assuming that os.kill is failing toJeffrey Yasskin2008-03-211-19/+7
* Try to fix test_signal breakages on Linux due to r61687. It appears that atJeffrey Yasskin2008-03-211-2/+4
* Speed up test_signal from ~24s to 4s by avoiding nearly all of the sleep calls.Jeffrey Yasskin2008-03-211-121/+129
* Windows fix for signal test - skip it earlierChristian Heimes2008-02-281-5/+6
* Issue 1089358. Adds the siginterrupt() function, that is just aFacundo Batista2008-02-231-2/+46
* Patch #1583 by Adam Olsen.Guido van Rossum2007-12-191-1/+48
* Patch #1008: port test_signal to unittest.Georg Brandl2007-08-241-161/+171
* Ah, fudge. One of the prints here actually "shouldn't be"Tim Peters2006-08-121-2/+1
* test_signal: Signal handling on the Tru64 buildbotTim Peters2006-08-121-64/+84
* force_test_exit(): This has been completely ineffectiveTim Peters2006-08-111-1/+5
* Let us know when there was a problem and the child had to kill the parentNeal Norwitz2006-08-021-0/+1
* Try to prevent hangs on Tru64/Alpha buildbot. I'm not certain this will helpNeal Norwitz2006-07-301-1/+37
* Verify that the signal handlers were really calledNeal Norwitz2006-07-301-0/+12
* Test getsignal() and some error conditionsNeal Norwitz2006-01-231-1/+23
* Let's not use string exceptions any more.Armin Rigo2004-08-071-1/+2
* lightly modified version of my patchMichael W. Hudson2004-06-111-24/+31
* Whitespace normalization.Tim Peters2003-04-241-1/+0
* Take out my (long since disabled) POSIX signal mask handling code.Michael W. Hudson2003-03-131-61/+0
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Whitespace normalization.Tim Peters2002-07-161-1/+0
* This is patchMichael W. Hudson2002-05-271-3/+65
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-2/+2
* a bold attempt to fix things broken by MAL's verify patch: importFredrik Lundh2001-01-171-1/+1
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-1/+1
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-31/+31
* Raise 'TestSkipped' (from the test_support) module rather than 'ImportError'Thomas Wouters2000-08-041-2/+2