Bug 851763 - Increase maxbytes for JSRuntime in IDBObjectStore and testGCOutOfMemory. r=Waldo

This commit is contained in:
Norbert Lindenberg 2013-03-27 11:32:34 -04:00
parent 5ffb7a55a5
commit 7be4d1d68f
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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() {