зеркало из https://github.com/mozilla/pjs.git
JavaScript Test - update regression test for bug 350692regress-350692.js
This commit is contained in:
Родитель
9d1d537afc
Коммит
51f35267fb
|
@ -51,6 +51,8 @@ function test()
|
|||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
var counter = 0;
|
||||
|
||||
function f(x,y) {
|
||||
|
||||
try
|
||||
|
@ -73,6 +75,10 @@ function test()
|
|||
{
|
||||
actual += e2;
|
||||
writeLineToLog(e2);
|
||||
if (++counter > 10)
|
||||
{
|
||||
throw 'Infinite loop...';
|
||||
}
|
||||
}
|
||||
}
|
||||
return 'returned';
|
||||
|
|
|
@ -50,8 +50,14 @@ function test()
|
|||
enterFunc ('test');
|
||||
printBugNumber (bug);
|
||||
printStatus (summary);
|
||||
|
||||
import x['y']['z'];
|
||||
|
||||
try
|
||||
{
|
||||
import x['y']['z'];
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
}
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче