mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Disable the hang detector for bug 429592 while running the startup cache tests because they intentionally hang the browser to trigger the startup timeout. feedback=mwu on IRC
--HG-- extra : rebase_source : cede9fe3c3355bd84aec501c7ae12a54ebe3bacf
This commit is contained in:
parent
8b8a2194c9
commit
0d5dc2e25a
@ -51,6 +51,8 @@
|
||||
#include "nsIObjectOutputStream.h"
|
||||
#include "nsIURI.h"
|
||||
#include "nsStringAPI.h"
|
||||
#include "nsIPrefBranch.h"
|
||||
#include "nsIPrefService.h"
|
||||
|
||||
namespace mozilla {
|
||||
namespace scache {
|
||||
@ -91,6 +93,7 @@ WaitForStartupTimer() {
|
||||
|
||||
bool complete;
|
||||
while (true) {
|
||||
|
||||
NS_ProcessPendingEvents(nsnull);
|
||||
rv = sc->StartupWriteComplete(&complete);
|
||||
if (NS_FAILED(rv) || complete)
|
||||
@ -320,6 +323,9 @@ int main(int argc, char** argv)
|
||||
nsresult rv2;
|
||||
ScopedXPCOM xpcom("Startup Cache");
|
||||
|
||||
nsCOMPtr<nsIPrefBranch> prefs = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
||||
prefs->SetIntPref("hangmonitor.timeout", 0);
|
||||
|
||||
if (NS_FAILED(TestStartupWriteRead()))
|
||||
rv = 1;
|
||||
if (NS_FAILED(TestWriteInvalidateRead()))
|
||||
|
Loading…
Reference in New Issue
Block a user