JavaScript Tests - update test and remove from exclusion list, bug 433698, r=jorendorff

This commit is contained in:
bclary@bclary.com 2008-05-14 16:18:47 -07:00
Родитель 711bdb48f2
Коммит 241cbed20c
3 изменённых файлов: 3 добавлений и 5 удалений

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

@ -66,14 +66,14 @@ var BUGNUMBER="10278";
startTest(); startTest();
writeHeaderToLog( SECTION + " "+ TITLE); writeHeaderToLog( SECTION + " "+ TITLE);
var result = "fail"; var result = "pass";
var exception = "no exception thrown"; var exception = "no exception thrown";
try { try {
eval("function f(){}function g(){}"); eval("function f(){}function g(){}");
} catch ( e ) { } catch ( e ) {
result = "pass" result = "fail";
exception = e.toString(); exception = e.toString();
} }
new TestCase( new TestCase(

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

@ -2,7 +2,6 @@
# #
# invalidated by bug 10278 # invalidated by bug 10278
# #
ecma_2/Exceptions/function-001.js
js1_2/function/function-001-n.js js1_2/function/function-001-n.js
js1_3/Script/function-001-n.js js1_3/Script/function-001-n.js
js1_3/regress/function-001-n.js js1_3/regress/function-001-n.js

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

@ -2,7 +2,6 @@
# #
# invalidated by bug 10278 # invalidated by bug 10278
# #
ecma_2/Exceptions/function-001.js
js1_2/function/function-001-n.js js1_2/function/function-001-n.js
js1_3/Script/function-001-n.js js1_3/Script/function-001-n.js
js1_3/regress/function-001-n.js js1_3/regress/function-001-n.js