~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_debug.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-04-24 05:42:49 UTC
  • mfrom: (2423.3.8 breakin)
  • Revision ID: pqm@pqm.ubuntu.com-20070424054249-bpkw4wwywqjt2nel
Press C-\ to break into pdb

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Blackbox tests for -D debug options"""
18
18
 
19
19
import os
 
20
import signal
 
21
import subprocess
 
22
import sys
 
23
import time
20
24
 
21
 
from bzrlib.tests import TestCase
 
25
from bzrlib.tests import TestCase, TestSkipped
22
26
 
23
27
class TestDebugOption(TestCase):
24
28