From 13ff24582c99dfb439b1af7295b401415e7eb05b Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 22 Jan 2018 18:32:50 +0100 Subject: bpo-32593: Drop FreeBSD 9 and older support (#5232) Drop support of FreeBSD 9 and older. --- Lib/test/test_threading.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Lib/test/test_threading.py') diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 007581d721..db70dfa95d 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -25,8 +25,7 @@ from test import support # #12316 and #11870), and fork() from a worker thread is known to trigger # problems with some operating systems (issue #3863): skip problematic tests # on platforms known to behave badly. -platforms_to_skip = ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5', - 'hp-ux11') +platforms_to_skip = ('netbsd5', 'hp-ux11') # A trivial mutable counter. -- cgit v1.2.1