From b4c3c0f4bfbe375ea29659863130281b1fedba74 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 7 Oct 2025 20:20:57 +0200 Subject: [PATCH] [3.14] gh-139308: Skip test_special_chars_csh on NetBSD due to csh variable expansion issue (GH-139341) (GH-139559) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit (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 26f069dce2b8..d108165be51e 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -522,6 +522,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) -- 2.47.3