mirror of
https://github.com/python/cpython.git
synced 2026-01-26 21:03:34 +00:00
gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (#139341)
Skip test_special_chars_csh on NetBSD due to csh variable expansion issue
Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
This commit is contained in:
parent
a7a485558c
commit
ae6e7f572c
@ -516,6 +516,8 @@ class BasicTest(BaseTest):
|
||||
|
||||
# gh-124651: test quoted strings
|
||||
@unittest.skipIf(os.name == 'nt', 'contains invalid characters on Windows')
|
||||
@unittest.skipIf(sys.platform.startswith('netbsd'),
|
||||
"NetBSD csh fails with quoted special chars; see gh-139308")
|
||||
def test_special_chars_csh(self):
|
||||
"""
|
||||
Test that the template strings are quoted properly (csh)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user