From f4115bee360a49a1852377e5b6f8992cbfa744de Mon Sep 17 00:00:00 2001 From: Furkan Onder Date: Sat, 4 Oct 2025 13:56:43 +0000 Subject: [PATCH] gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (GH-139341) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (cherry picked from commit ae6e7f572c18d9183cb23e6e53c3324dd9bf0c64) Co-authored-by: Furkan Onder Co-authored-by: Filipe Laíns 🇵🇸 --- Lib/test/test_venv.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index c39c83f9d0a5c3..8b27ce18be178d 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -518,6 +518,8 @@ def test_special_chars_bash(self): # 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)