No bug. Fix typed array tests; rs=brendan

This commit is contained in:
Vladimir Vukicevic 2010-01-11 17:21:33 -08:00
parent 0d1d39c382
commit f3fa823190

View File

@ -58,16 +58,16 @@ function test()
TestPassCount++;
} else {
TestFailCount++;
}
var ex = new Error;
print ("=== FAILED ===");
print (ex.stack);
if (thrown) {
print (" threw exception:");
print (thrown);
var ex = new Error;
print ("=== FAILED ===");
print (ex.stack);
if (thrown) {
print (" threw exception:");
print (thrown);
}
print ("==============");
}
print ("==============");
}
function checkThrows(fun, todo) {
@ -180,7 +180,7 @@ function test()
print ("done");
checkSuccess(TestFailCount, 0, "typed array test failures");
reportCompare(0, TestFailCount, "typed array test failures");
exitFunc ('test');
}