mirror of https://github.com/tc39/test262.git
[javascriptcore-test262-automation] Changes from https://github.com/webkit/webkit.git at sha ac12ca41a6 on Wed Oct 17 2018 18:41:25 GMT+0000 (Coordinated Universal Time)
This commit is contained in:
parent
4d6e47bca9
commit
96f9510815
|
@ -0,0 +1,36 @@
|
|||
function shouldEqual(actual, expected) {
|
||||
if (actual != expected) {
|
||||
throw "ERROR: expect " + expected + ", actual " + actual;
|
||||
}
|
||||
}
|
||||
|
||||
function test() {
|
||||
var exception;
|
||||
try {
|
||||
var a = [];
|
||||
a.length = 0x1fff00;
|
||||
|
||||
var b = a.splice(0, 0x100000); // Undecided array
|
||||
|
||||
var args = [];
|
||||
args.length = 4094;
|
||||
args.fill(b);
|
||||
|
||||
var q = [];
|
||||
q.length = 0x1000;
|
||||
q.fill(7);
|
||||
|
||||
var c = a.splice(0, 0xfffef); //Shorter undecided array
|
||||
|
||||
args[4094] = c;
|
||||
args[4095] = q;
|
||||
|
||||
b.concat.apply(b, args);
|
||||
} catch (e) {
|
||||
exception = e;
|
||||
}
|
||||
|
||||
shouldEqual(exception, "RangeError: Length exceeded the maximum array length");
|
||||
}
|
||||
|
||||
test();
|
|
@ -0,0 +1,26 @@
|
|||
function shouldEqual(actual, expected) {
|
||||
if (actual != expected) {
|
||||
throw "ERROR: expect " + expected + ", actual " + actual;
|
||||
}
|
||||
}
|
||||
|
||||
function test() {
|
||||
var exception;
|
||||
try {
|
||||
var a = [];
|
||||
a.length = 0x1fff00;
|
||||
|
||||
var b = a.splice(0, 0x100000); // Undecided array
|
||||
|
||||
var args = [];
|
||||
args.length = 4096;
|
||||
args.fill(b);
|
||||
|
||||
b.concat.apply(b, args);
|
||||
} catch (e) {
|
||||
exception = e;
|
||||
}
|
||||
shouldEqual(exception, "RangeError: Length exceeded the maximum array length");
|
||||
}
|
||||
|
||||
test();
|
|
@ -0,0 +1,22 @@
|
|||
function assert(b) {
|
||||
if (!b)
|
||||
throw new Error;
|
||||
}
|
||||
|
||||
function foo(view) {
|
||||
let x = view.getFloat64(0);
|
||||
return [x, x | 0];
|
||||
}
|
||||
noInline(foo);
|
||||
|
||||
let buffer = new ArrayBuffer(8);
|
||||
let view = new DataView(buffer);
|
||||
for (let i = 0; i < 1000000; ++i) {
|
||||
for (let i = 0; i < 8; ++i) {
|
||||
view.setInt8(i, Math.random() * 255);
|
||||
}
|
||||
|
||||
let [a, b] = foo(view);
|
||||
if (isNaN(a))
|
||||
assert(b === 0);
|
||||
}
|
|
@ -1,40 +0,0 @@
|
|||
function shouldBe(actual, expected) {
|
||||
if (actual !== expected)
|
||||
throw new Error('bad value: ' + actual);
|
||||
}
|
||||
|
||||
function shouldThrow(func, errorMessage) {
|
||||
var errorThrown = false;
|
||||
var error = null;
|
||||
try {
|
||||
func();
|
||||
} catch (e) {
|
||||
errorThrown = true;
|
||||
error = e;
|
||||
}
|
||||
if (!errorThrown)
|
||||
throw new Error('not thrown');
|
||||
if (String(error) !== errorMessage)
|
||||
throw new Error(`bad error: ${String(error)}`);
|
||||
}
|
||||
|
||||
for (var i = 0; i < 10; ++i) {
|
||||
var f = Function('/*) {\n*/', 'return 42');
|
||||
shouldBe(f.toString(),
|
||||
`function anonymous(/*) {
|
||||
*/) {
|
||||
return 42
|
||||
}`);
|
||||
}
|
||||
shouldThrow(() => Function('/*', '*/){\nreturn 42'), `SyntaxError: Parameters should match arguments offered as parameters in Function constructor.`);
|
||||
|
||||
shouldThrow(() => Function('/*', '*/){\nreturn 43'), `SyntaxError: Parameters should match arguments offered as parameters in Function constructor.`);
|
||||
for (var i = 0; i < 10; ++i) {
|
||||
var f = Function('/*) {\n*/', 'return 43');
|
||||
shouldBe(f.toString(),
|
||||
`function anonymous(/*) {
|
||||
*/) {
|
||||
return 43
|
||||
}`);
|
||||
}
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
function shouldBe(actual, expected) {
|
||||
if (actual !== expected)
|
||||
throw new Error('bad value: ' + actual);
|
||||
}
|
||||
|
||||
var GeneratorFunction = function*(){}.constructor;
|
||||
var AsyncFunction = async function(){}.constructor;
|
||||
var AsyncGeneratorFunction = async function*(){}.constructor;
|
||||
|
||||
var f = Function(`return 42`);
|
||||
shouldBe(typeof anonymous, `undefined`);
|
||||
shouldBe(f.toString(),
|
||||
`function anonymous() {
|
||||
return 42
|
||||
}`);
|
||||
|
||||
var gf = GeneratorFunction(`return 42`);
|
||||
shouldBe(typeof anonymous, `undefined`);
|
||||
shouldBe(gf.toString(),
|
||||
`function* anonymous() {
|
||||
return 42
|
||||
}`);
|
||||
|
||||
var af = AsyncFunction(`return 42`);
|
||||
shouldBe(typeof anonymous, `undefined`);
|
||||
shouldBe(af.toString(),
|
||||
`async function anonymous() {
|
||||
return 42
|
||||
}`);
|
||||
|
||||
var agf = AsyncGeneratorFunction(`return 42`);
|
||||
shouldBe(typeof anonymous, `undefined`);
|
||||
shouldBe(agf.toString(),
|
||||
`async function* anonymous() {
|
||||
return 42
|
||||
}`);
|
|
@ -0,0 +1,11 @@
|
|||
function main() {
|
||||
let arr = [1];
|
||||
|
||||
arr.length = 0x100000;
|
||||
arr.splice(0, 0x11);
|
||||
|
||||
arr.length = 0xfffffff0;
|
||||
arr.splice(0xfffffff0, 0, 1);
|
||||
}
|
||||
|
||||
main();
|
Loading…
Reference in New Issue