зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1164448 - Add test. r=jandem
This commit is contained in:
Родитель
8316235dc1
Коммит
5b4c1f3bf9
|
@ -0,0 +1,25 @@
|
|||
// |jit-test| error: TypeError
|
||||
|
||||
print = function(s) { return s.toString(); }
|
||||
var gTestcases = new Array();
|
||||
function TestCase(n, d, e, a)
|
||||
gTestcases[gTc++] = this;
|
||||
dump = print;
|
||||
for ( gTc=0; gTc < gTestcases.length; gTc++ ) {}
|
||||
function jsTestDriverEnd() {
|
||||
for (var i = 0; i < gTestcases.length; i++)
|
||||
gTestcases[i].dump();
|
||||
}
|
||||
TestCase();
|
||||
var g = newGlobal();
|
||||
g.parent = this;
|
||||
g.eval("new Debugger(parent).onExceptionUnwind = function () {};");
|
||||
enableSPSProfiling();
|
||||
if (getBuildConfiguration()["arm-simulator"])
|
||||
enableSingleStepProfiling(1);
|
||||
loadFile("jsTestDriverEnd();");
|
||||
loadFile("jsTestDriverEnd();");
|
||||
jsTestDriverEnd();
|
||||
function loadFile(lfVarx) {
|
||||
try { evaluate(lfVarx); } catch (lfVare) {}
|
||||
}
|
Загрузка…
Ссылка в новой задаче