Bug 1024774 - Followup: Don't redefine the Debugger property in xpcshell tests;

r=jorendorff
This commit is contained in:
Nick Fitzgerald 2015-05-28 07:37:43 -07:00
Родитель 0e14428443
Коммит bb41d221a3
2 изменённых файлов: 8 добавлений и 6 удалений

Просмотреть файл

@ -3,9 +3,10 @@
// Test that we can read core dumps into HeapSnapshot instances.
const { addDebuggerToGlobal } = Cu.import("resource://gre/modules/jsdebugger.jsm", {});
var Debugger;
addDebuggerToGlobal(this);
if (typeof Debugger != "function") {
const { addDebuggerToGlobal } = Cu.import("resource://gre/modules/jsdebugger.jsm", {});
addDebuggerToGlobal(this);
}
function run_test() {
const filePath = getFilePath("core-dump.tmp", true, true);

Просмотреть файл

@ -3,9 +3,10 @@
// Test the ChromeUtils interface.
const { addDebuggerToGlobal } = Cu.import("resource://gre/modules/jsdebugger.jsm", {});
var Debugger;
addDebuggerToGlobal(this);
if (typeof Debugger != "function") {
const { addDebuggerToGlobal } = Cu.import("resource://gre/modules/jsdebugger.jsm", {});
addDebuggerToGlobal(this);
}
function run_test() {
ok(ChromeUtils, "Should be able to get the ChromeUtils interface");