From 3548a50c5fd73266d6dcec08994e2cdb75e2c4c9 Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Thu, 29 Oct 2009 20:25:58 -0400 Subject: [PATCH] disable windows hang checking for now, bug 525370 filed to sort it out --- build/automation.py.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/automation.py.in b/build/automation.py.in index 53352ed80c4..2e8a8322eda 100644 --- a/build/automation.py.in +++ b/build/automation.py.in @@ -441,6 +441,11 @@ def environment(env = None, xrePath = DIST_BIN, crashreporter = True): return env if IS_WIN32: + #XXX: disabled on windows for now, see bug 525370 + def readWithTimeout(f, timeout): + return (f.readline(), False) +elif False: + #XXX: figure out what's going wrong with this code! import ctypes, time, msvcrt PeekNamedPipe = ctypes.windll.kernel32.PeekNamedPipe GetLastError = ctypes.windll.kernel32.GetLastError