Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | const TEST_BASE_HTTP = "http://example.com/browser/browser/devtools/commandline/test/"; |
michael@0 | 6 | const TEST_BASE_HTTPS = "https://example.com/browser/browser/devtools/commandline/test/"; |
michael@0 | 7 | |
michael@0 | 8 | // Import the GCLI test helper |
michael@0 | 9 | let testDir = gTestPath.substr(0, gTestPath.lastIndexOf("/")); |
michael@0 | 10 | Services.scriptloader.loadSubScript(testDir + "/helpers.js", this); |
michael@0 | 11 | Services.scriptloader.loadSubScript(testDir + "/mockCommands.js", this); |
michael@0 | 12 | |
michael@0 | 13 | gDevTools.testing = true; |
michael@0 | 14 | SimpleTest.registerCleanupFunction(() => { |
michael@0 | 15 | gDevTools.testing = false; |
michael@0 | 16 | }); |
michael@0 | 17 | |
michael@0 | 18 | function whenDelayedStartupFinished(aWindow, aCallback) { |
michael@0 | 19 | Services.obs.addObserver(function observer(aSubject, aTopic) { |
michael@0 | 20 | if (aWindow == aSubject) { |
michael@0 | 21 | Services.obs.removeObserver(observer, aTopic); |
michael@0 | 22 | executeSoon(aCallback); |
michael@0 | 23 | } |
michael@0 | 24 | }, "browser-delayed-startup-finished", false); |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | /** |
michael@0 | 28 | * Force GC on shutdown, because it seems that GCLI can outrun the garbage |
michael@0 | 29 | * collector in some situations, which causes test failures in later tests |
michael@0 | 30 | * Bug 774619 is an example. |
michael@0 | 31 | */ |
michael@0 | 32 | registerCleanupFunction(function tearDown() { |
michael@0 | 33 | window.QueryInterface(Ci.nsIInterfaceRequestor) |
michael@0 | 34 | .getInterface(Ci.nsIDOMWindowUtils) |
michael@0 | 35 | .garbageCollect(); |
michael@0 | 36 | }); |