From: Stefan Krah Date: Wed, 12 Sep 2012 19:30:09 +0000 (+0200) Subject: Issue #15599: FreeBSD on KVM cannot handle a very low switch interval. X-Git-Tag: v3.3.1rc1~818^2^2~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b90d66342469f7969d6e0cc3e5926cffaf566c5;p=python Issue #15599: FreeBSD on KVM cannot handle a very low switch interval. --- diff --git a/Lib/test/test_threaded_import.py b/Lib/test/test_threaded_import.py index cfc6842e1f..4a5d7bee09 100644 --- a/Lib/test/test_threaded_import.py +++ b/Lib/test/test_threaded_import.py @@ -225,9 +225,11 @@ class ThreadedImportTests(unittest.TestCase): @reap_threads def test_main(): old_switchinterval = None + # Issue #15599: FreeBSD/KVM cannot handle gil_interval == 1. + new_switchinterval = 0.00001 if 'freebsd' in sys.platform else 0.00000001 try: old_switchinterval = sys.getswitchinterval() - sys.setswitchinterval(0.00000001) + sys.setswitchinterval(new_switchinterval) except AttributeError: pass try: