From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:35:14 +0000 (+0200) Subject: [3.13] gh-124083: Skip test_signal.test_strsignal() on NetBSD (GH-124084) (#124223) X-Git-Tag: v3.13.0rc3~105 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cf67d3696a71f865f8078a66fb0aee309f1b42f;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-124083: Skip test_signal.test_strsignal() on NetBSD (GH-124084) (#124223) gh-124083: Skip test_signal.test_strsignal() on NetBSD (GH-124084) Skip test_strsignal() on NetBSD due to TypeError. (cherry picked from commit 36682c091407dc9c7e750c22fb71e62466952662) Co-authored-by: Furkan Onder Co-authored-by: T. Wouters --- diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 591cd4177d9f..8101322347ed 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -123,6 +123,8 @@ class PosixTests(unittest.TestCase): self.assertEqual(signal.getsignal(signal.SIGHUP), hup) self.assertEqual(0, argument.repr_count) + @unittest.skipIf(sys.platform.startswith("netbsd"), + "gh-124083: strsignal is not supported on NetBSD") def test_strsignal(self): self.assertIn("Interrupt", signal.strsignal(signal.SIGINT)) self.assertIn("Terminated", signal.strsignal(signal.SIGTERM))