From 3b2184a895d2a9157297cf022a5605484f056db8 Mon Sep 17 00:00:00 2001 From: "anodelman@mozilla.com" Date: Fri, 16 Nov 2007 09:53:34 -0800 Subject: [PATCH] Bug 403102 - talos needs to recognize browser crash. attempted fix for non-threadsafe popen behavior a=anodelman r=rcampbell --- testing/performance/talos/ffprocess_mac.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/performance/talos/ffprocess_mac.py b/testing/performance/talos/ffprocess_mac.py index 7683a3c70978..c55c3fdd594b 100644 --- a/testing/performance/talos/ffprocess_mac.py +++ b/testing/performance/talos/ffprocess_mac.py @@ -37,6 +37,10 @@ # ***** END LICENSE BLOCK ***** import subprocess +#HACK - http://www.gossamer-threads.com/lists/python/bugs/593800 +#To stop non-threadsafe popen nonsense, should be removed when we upgrade to +#python 2.5 or later +subprocess._cleanup = lambda: None import signal import os import time