mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
gh-133558: Skip test_pdb tests on FreeBSD (#133566)
'\x08' is not interpreted as backspace on FreeBSD.
This commit is contained in:
parent
14291faa52
commit
79b8a32fcb
1 changed files with 4 additions and 0 deletions
|
|
@ -4848,6 +4848,8 @@ def f():
|
|||
|
||||
self.assertIn(b'I love Python', output)
|
||||
|
||||
@unittest.skipIf(sys.platform.startswith('freebsd'),
|
||||
'\\x08 is not interpreted as backspace on FreeBSD')
|
||||
def test_multiline_auto_indent(self):
|
||||
script = textwrap.dedent("""
|
||||
import pdb; pdb.Pdb().set_trace()
|
||||
|
|
@ -4886,6 +4888,8 @@ def test_multiline_completion(self):
|
|||
|
||||
self.assertIn(b'42', output)
|
||||
|
||||
@unittest.skipIf(sys.platform.startswith('freebsd'),
|
||||
'\\x08 is not interpreted as backspace on FreeBSD')
|
||||
def test_multiline_indent_completion(self):
|
||||
script = textwrap.dedent("""
|
||||
import pdb; pdb.Pdb().set_trace()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue