JavaScript Test - move test to decompilation subsuite, bug 344120

This commit is contained in:
bclary@bclary.com 2007-05-30 10:42:50 -07:00
Родитель c557b28363
Коммит 16a41ab62b
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -40,7 +40,7 @@ var gTestfile = 'regress-344120.js';
var BUGNUMBER = 344120;
var summary = 'function to source with numeric labels';
var actual = '';
var expect = 'function () {\n x = {1:1};\n}';
var expect;
//-----------------------------------------------------------------------------
@ -53,9 +53,10 @@ function test()
printBugNumber(BUGNUMBER);
printStatus (summary);
expect = 'function () { x = {1:1};}';
actual = ''+function (){x={1:1}}
reportCompare(expect, actual, summary);
compareSource(expect, actual, summary);
exitFunc ('test');
}