mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
No bug. Fix typed array tests; rs=brendan
This commit is contained in:
parent
0d1d39c382
commit
f3fa823190
@ -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');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user