JavaScript Test - update regression test for bug 350692regress-350692.js

This commit is contained in:
bclary%bclary.com 2006-08-31 17:11:49 +00:00
Родитель 9d1d537afc
Коммит 51f35267fb
2 изменённых файлов: 14 добавлений и 2 удалений

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

@ -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);