~ubuntu-dev/ubuntu/lucid/atheist/lucid-201002101901

« back to all changes in this revision

Viewing changes to tests/send_signal.test

  • Committer: Bazaar Package Importer
  • Author(s): Cleto Martin Angelina
  • Date: 2009-09-06 11:56:09 UTC
  • Revision ID: james.westby@ubuntu.com-20090906115609-r4fl7q3n8vmc6s94
Tags: upstream-0.20090906
ImportĀ upstreamĀ versionĀ 0.20090906

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-*-python-*-
 
2
 
 
3
import signal
 
4
 
 
5
a = Test('python $dirname/signal_capture.py', detach=True, timeout=10,
 
6
  signal=signal.SIGINT, expected=3)
 
7
 
 
8
b = Test(None)
 
9
b.delay=2
 
10
b.terminates += a
 
11