Bug 1270774 - Fix devtool memory test limits to allow for more nursery slop; r=fitzgen

This commit is contained in:
Terrence Cole 2016-05-06 12:18:11 -07:00
parent ffbbcc981b
commit 38e696d22b

View File

@ -34,19 +34,19 @@ function init_server() {
function add_browser_actors() {
DebuggerServer.addBrowserActors();
check_footprint("DebuggerServer.addBrowserActors()", 2000);
check_footprint("DebuggerServer.addBrowserActors()", 2600);
}
function connect_client() {
gClient = new DebuggerClient(DebuggerServer.connectPipe());
gClient.connect().then(function onConnect() {
check_footprint("DebuggerClient.connect()", 2600);
check_footprint("DebuggerClient.connect()", 3200);
});
}
function list_tabs() {
gClient.listTabs(function onListTabs(aResponse) {
check_footprint("DebuggerClient.listTabs()", 3200);
check_footprint("DebuggerClient.listTabs()", 3800);
});
}