mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 851763 - Increase maxbytes for JSRuntime in IDBObjectStore and testGCOutOfMemory. r=Waldo
This commit is contained in:
parent
5ffb7a55a5
commit
7be4d1d68f
@ -510,7 +510,7 @@ class ThreadLocalJSRuntime
|
||||
JSObject* mGlobal;
|
||||
|
||||
static JSClass sGlobalClass;
|
||||
static const unsigned sRuntimeHeapSize = 512 * 1024;
|
||||
static const unsigned sRuntimeHeapSize = 768 * 1024;
|
||||
|
||||
ThreadLocalJSRuntime()
|
||||
: mRuntime(NULL), mContext(NULL), mGlobal(NULL)
|
||||
|
@ -54,7 +54,7 @@ BEGIN_TEST(testGCOutOfMemory)
|
||||
}
|
||||
|
||||
virtual JSRuntime * createRuntime() {
|
||||
return JS_NewRuntime(512 * 1024, JS_USE_HELPER_THREADS);
|
||||
return JS_NewRuntime(768 * 1024, JS_USE_HELPER_THREADS);
|
||||
}
|
||||
|
||||
virtual void destroyRuntime() {
|
||||
|
Loading…
Reference in New Issue
Block a user