diff --git a/harness/arrayContains.js b/harness/arrayContains.js index 47af86b8f2..5f758b933a 100644 --- a/harness/arrayContains.js +++ b/harness/arrayContains.js @@ -1,10 +1,16 @@ -//----------------------------------------------------------------------------- -function arrayContains(arr, expected) { +/** + * Verify that a subArray is contained within an array. + * + * @param {Array} array + * @param {Array} subArray + */ + +function arrayContains(array, subArray) { var found; - for (var i = 0; i < expected.length; i++) { + for (var i = 0; i < subArray.length; i++) { found = false; - for (var j = 0; j < arr.length; j++) { - if (expected[i] === arr[j]) { + for (var j = 0; j < array.length; j++) { + if (subArray[i] === array[j]) { found = true; break; } diff --git a/harness/Date_constants.js b/harness/dateConstants.js similarity index 80% rename from harness/Date_constants.js rename to harness/dateConstants.js index 11ce5c7e4c..ebf2d75e54 100644 --- a/harness/Date_constants.js +++ b/harness/dateConstants.js @@ -1,5 +1,4 @@ -//Date_constants.js -// Copyright 2009 the Sputnik authors. All rights reserved. +// Copyright (C) 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. var date_1899_end = -2208988800001; diff --git a/harness/PromiseHelper.js b/harness/promiseHelper.js similarity index 94% rename from harness/PromiseHelper.js rename to harness/promiseHelper.js index 963b93f441..0bdff33e44 100644 --- a/harness/PromiseHelper.js +++ b/harness/promiseHelper.js @@ -6,4 +6,6 @@ function checkSequence(arr, message) { " '" + arr.join(',') + "'"); } }); + + return true; } diff --git a/harness/tco-helper.js b/harness/tcoHelper.js similarity index 100% rename from harness/tco-helper.js rename to harness/tcoHelper.js diff --git a/test/built-ins/Date/S15.9.3.2_A1_T1.js b/test/built-ins/Date/S15.9.3.2_A1_T1.js index 88066187c8..d5aefcf56b 100644 --- a/test/built-ins/Date/S15.9.3.2_A1_T1.js +++ b/test/built-ins/Date/S15.9.3.2_A1_T1.js @@ -7,8 +7,7 @@ info: > a constructor: it initialises the newly created object es5id: 15.9.3.2_A1_T1 description: Checking types of newly created objects and it values -includes: - - Date_constants.js +includes: [dateConstants.js] ---*/ if (typeof new Date(date_1899_end) !== "object") { diff --git a/test/built-ins/Date/S15.9.3.2_A2_T1.js b/test/built-ins/Date/S15.9.3.2_A2_T1.js index 1312cb05fd..e8d8f57566 100644 --- a/test/built-ins/Date/S15.9.3.2_A2_T1.js +++ b/test/built-ins/Date/S15.9.3.2_A2_T1.js @@ -8,8 +8,7 @@ info: > initial value of Date.prototype es5id: 15.9.3.2_A2_T1 description: Checking Date.prototype property of newly constructed objects -includes: - - Date_constants.js +includes: [dateConstants.js] ---*/ var x11 = new Date(date_1899_end); diff --git a/test/built-ins/Date/S15.9.3.2_A3_T1.1.js b/test/built-ins/Date/S15.9.3.2_A3_T1.1.js index 2cf740fd27..2880a91531 100644 --- a/test/built-ins/Date/S15.9.3.2_A3_T1.1.js +++ b/test/built-ins/Date/S15.9.3.2_A3_T1.1.js @@ -7,8 +7,7 @@ info: > is set to "Date" es5id: 15.9.3.2_A3_T1.1 description: Test based on delete prototype.toString -includes: - - Date_constants.js +includes: [dateConstants.js] ---*/ var x1 = new Date(date_1899_end); diff --git a/test/built-ins/Date/S15.9.3.2_A3_T1.2.js b/test/built-ins/Date/S15.9.3.2_A3_T1.2.js index a12598c7af..af0ce77d04 100644 --- a/test/built-ins/Date/S15.9.3.2_A3_T1.2.js +++ b/test/built-ins/Date/S15.9.3.2_A3_T1.2.js @@ -7,8 +7,7 @@ info: > is set to "Date" es5id: 15.9.3.2_A3_T1.2 description: Test based on overwriting prototype.toString -includes: - - Date_constants.js +includes: [dateConstants.js] ---*/ Date.prototype.toString = Object.prototype.toString; diff --git a/test/built-ins/Promise/all/S25.4.4.1_A2.2_T1.js b/test/built-ins/Promise/all/S25.4.4.1_A2.2_T1.js index a34fb70f6d..ddeea876d2 100644 --- a/test/built-ins/Promise/all/S25.4.4.1_A2.2_T1.js +++ b/test/built-ins/Promise/all/S25.4.4.1_A2.2_T1.js @@ -5,7 +5,7 @@ info: Promise.all([]) is resolved immediately es6id: 25.4.4.1_A2.2_T1 author: Sam Mikes -includes: [PromiseHelper.js] +includes: [promiseHelper.js] description: Promise.all([]) returns immediately flags: [async] ---*/ diff --git a/test/built-ins/Promise/all/S25.4.4.1_A7.2_T1.js b/test/built-ins/Promise/all/S25.4.4.1_A7.2_T1.js index 2ce3ad82a9..acfeafc6d1 100644 --- a/test/built-ins/Promise/all/S25.4.4.1_A7.2_T1.js +++ b/test/built-ins/Promise/all/S25.4.4.1_A7.2_T1.js @@ -8,7 +8,7 @@ info: > es6id: S25.4.4.1_A7.2_T1 author: Sam Mikes description: Promise.all() accepts a one-element array -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/all/S25.4.4.1_A8.1_T1.js b/test/built-ins/Promise/all/S25.4.4.1_A8.1_T1.js index d9e9cac5a0..7a6d917d0e 100644 --- a/test/built-ins/Promise/all/S25.4.4.1_A8.1_T1.js +++ b/test/built-ins/Promise/all/S25.4.4.1_A8.1_T1.js @@ -5,7 +5,7 @@ es6id: S25.4.4.1_A8.1_T1 author: Sam Mikes description: Promise.all([p1, p2]) resolution functions are called in predictable sequence -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/all/S25.4.4.1_A8.2_T1.js b/test/built-ins/Promise/all/S25.4.4.1_A8.2_T1.js index e8f1320f71..8c379cd907 100644 --- a/test/built-ins/Promise/all/S25.4.4.1_A8.2_T1.js +++ b/test/built-ins/Promise/all/S25.4.4.1_A8.2_T1.js @@ -7,7 +7,7 @@ info: > es6id: S25.4.4.1_A8.1_T1 author: Sam Mikes description: Promise.all() rejects when a promise in its array rejects -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/all/S25.4.4.1_A8.2_T2.js b/test/built-ins/Promise/all/S25.4.4.1_A8.2_T2.js index 58151d1405..25b26cef77 100644 --- a/test/built-ins/Promise/all/S25.4.4.1_A8.2_T2.js +++ b/test/built-ins/Promise/all/S25.4.4.1_A8.2_T2.js @@ -7,7 +7,7 @@ info: > es6id: S25.4.4.1_A8.2_T2 author: Sam Mikes description: Promise.all() rejects when second promise in array rejects -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.4_A1.1_T1.js b/test/built-ins/Promise/prototype/then/S25.4.4_A1.1_T1.js index a1c2edcc7e..33cb988135 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.4_A1.1_T1.js +++ b/test/built-ins/Promise/prototype/then/S25.4.4_A1.1_T1.js @@ -8,7 +8,7 @@ info: > es6id: S25.4.2.1_A3.2_T2 author: Sam Mikes description: Promise onResolved functions are called in predictable sequence -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T1.js b/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T1.js index 33c1f555a5..18991506ac 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T1.js +++ b/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T1.js @@ -9,7 +9,7 @@ info: > es6id: S25.4.4_A2.1_T1 author: Sam Mikes description: Promise onResolved functions are called in predictable sequence -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T2.js b/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T2.js index b5bf2c89e6..6916e9ce6a 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T2.js +++ b/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T2.js @@ -9,7 +9,7 @@ info: > es6id: S25.4.4_A2.1_T2 author: Sam Mikes description: Promise onResolved functions are called in predictable sequence -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T3.js b/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T3.js index 17992e0011..c905d8a367 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T3.js +++ b/test/built-ins/Promise/prototype/then/S25.4.4_A2.1_T3.js @@ -9,7 +9,7 @@ info: > es6id: S25.4.4_A2.1_T3 author: Sam Mikes description: Promise onResolved functions are called in predictable sequence -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.1_T1.js b/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.1_T1.js index b97ae3fc9a..d4fa556266 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.1_T1.js +++ b/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.1_T1.js @@ -8,7 +8,7 @@ info: > es6id: S25.4.5.3_A5.1_T1 author: Sam Mikes description: Promise.prototype.then enqueues handler if pending -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.2_T1.js b/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.2_T1.js index 92ad8b82d4..38e0de93df 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.2_T1.js +++ b/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.2_T1.js @@ -8,7 +8,7 @@ info: > es6id: S25.4.5.3_A5.2_T1 author: Sam Mikes description: Promise.prototype.then immediately queues handler if fulfilled -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.3_T1.js b/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.3_T1.js index 27c65f2692..c70acedba4 100644 --- a/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.3_T1.js +++ b/test/built-ins/Promise/prototype/then/S25.4.5.3_A5.3_T1.js @@ -8,7 +8,7 @@ info: > es6id: S25.4.5.3_A5.3_T1 author: Sam Mikes description: Promise.prototype.then immediately queues handler if rejected -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/race/S25.4.4.3_A6.1_T1.js b/test/built-ins/Promise/race/S25.4.4.3_A6.1_T1.js index 99c327c5ce..90c46e37e8 100644 --- a/test/built-ins/Promise/race/S25.4.4.3_A6.1_T1.js +++ b/test/built-ins/Promise/race/S25.4.4.3_A6.1_T1.js @@ -5,7 +5,7 @@ es6id: S25.4.4.3_A6.1_T1 author: Sam Mikes description: Promise.race([1]) settles immediately -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/race/S25.4.4.3_A6.2_T1.js b/test/built-ins/Promise/race/S25.4.4.3_A6.2_T1.js index 93468f8693..b28ccdb516 100644 --- a/test/built-ins/Promise/race/S25.4.4.3_A6.2_T1.js +++ b/test/built-ins/Promise/race/S25.4.4.3_A6.2_T1.js @@ -5,7 +5,7 @@ es6id: S25.4.4.3_A6.2_T1 author: Sam Mikes description: Promise.race([p1]) settles immediately -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/race/S25.4.4.3_A7.1_T1.js b/test/built-ins/Promise/race/S25.4.4.3_A7.1_T1.js index 9f0848429f..517df57b36 100644 --- a/test/built-ins/Promise/race/S25.4.4.3_A7.1_T1.js +++ b/test/built-ins/Promise/race/S25.4.4.3_A7.1_T1.js @@ -5,7 +5,7 @@ es6id: S25.4.4.3_A7.1_T1 author: Sam Mikes description: Promise.race([p1, p2]) settles when first settles -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/race/S25.4.4.3_A7.1_T2.js b/test/built-ins/Promise/race/S25.4.4.3_A7.1_T2.js index 6f4030d7d4..f0f12a4e5b 100644 --- a/test/built-ins/Promise/race/S25.4.4.3_A7.1_T2.js +++ b/test/built-ins/Promise/race/S25.4.4.3_A7.1_T2.js @@ -5,7 +5,7 @@ es6id: S25.4.4.3_A7.1_T2 author: Sam Mikes description: Promise.race([p1, p2]) settles when first settles -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/race/S25.4.4.3_A7.1_T3.js b/test/built-ins/Promise/race/S25.4.4.3_A7.1_T3.js index 047dd65d27..7e0f286c84 100644 --- a/test/built-ins/Promise/race/S25.4.4.3_A7.1_T3.js +++ b/test/built-ins/Promise/race/S25.4.4.3_A7.1_T3.js @@ -5,7 +5,7 @@ es6id: S25.4.4.3_A7.1_T3 author: Sam Mikes description: Promise.race([p1, p2]) settles when first settles -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js b/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js index fbbdcf95ee..3f24b602db 100644 --- a/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js +++ b/test/built-ins/Promise/race/S25.4.4.3_A7.2_T1.js @@ -5,7 +5,7 @@ es6id: S25.4.4.3_A7.2_T1 author: Sam Mikes description: Promise.race([p1, p2]) settles when first settles -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/resolve/S25.4.4.5_A3.1_T1.js b/test/built-ins/Promise/resolve/S25.4.4.5_A3.1_T1.js index e76d00a3d9..2a2994a803 100644 --- a/test/built-ins/Promise/resolve/S25.4.4.5_A3.1_T1.js +++ b/test/built-ins/Promise/resolve/S25.4.4.5_A3.1_T1.js @@ -7,7 +7,7 @@ info: > es6id: S25.4.4.5_A3.1_T1 author: Sam Mikes description: Promise.resolve delegates to foreign thenable -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_1.js b/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_1.js index bf0f2d6d28..05e712839e 100644 --- a/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_1.js +++ b/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_1.js @@ -7,7 +7,7 @@ info: > es6id: S25.4.4.5 author: Sam Mikes description: Promise.resolve delegates to foreign thenable -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_2.js b/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_2.js index b4c0c3ec6b..d12cbb2aa1 100644 --- a/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_2.js +++ b/test/built-ins/Promise/resolve/S25.Promise_resolve_foreign_thenable_2.js @@ -7,7 +7,7 @@ info: > es6id: S25.4.4.5 author: Sam Mikes description: Promise.resolve delegates to foreign thenable -includes: [PromiseHelper.js] +includes: [promiseHelper.js] flags: [async] ---*/ diff --git a/test/harness/arrayContains.js b/test/harness/arrayContains.js new file mode 100644 index 0000000000..3f83e30878 --- /dev/null +++ b/test/harness/arrayContains.js @@ -0,0 +1,24 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Assert that the contents of an array contains another array as a slice or sub-array +includes: [arrayContains.js] +---*/ + +const willMatch = [0, 1, 2]; + +assert(arrayContains([0, 1, 2, 3], willMatch)); +assert(arrayContains([null, 0, 1, 2, 3], willMatch)); +assert(arrayContains([undefined, 0, 1, 2, 3], willMatch)); +assert(arrayContains([false, 0, 1, 2, 3], willMatch)); +assert(arrayContains([NaN, 0, 1, 2, 3], willMatch)); + +const willNotMatch = [1, 0, 2]; + +assert(!arrayContains([1, /* intentional hole */, 2], willNotMatch), '[1, /* intentional hole */, 2], willNotMatch)'); +assert(!arrayContains([1, null, 2], willNotMatch), '[1, null, 2], willNotMatch)'); +assert(!arrayContains([1, undefined, 2], willNotMatch), '[1, undefined, 2], willNotMatch)'); +assert(!arrayContains([1, false, 2], willNotMatch), '[1, false, 2], willNotMatch)'); +assert(!arrayContains([1, NaN, 2], willNotMatch), '[1, NaN, 2], willNotMatch)'); diff --git a/test/harness/dateConstants.js b/test/harness/dateConstants.js new file mode 100644 index 0000000000..265186aef1 --- /dev/null +++ b/test/harness/dateConstants.js @@ -0,0 +1,25 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including dateConstants.js will expose: + + var date_1899_end = -2208988800001; + var date_1900_start = -2208988800000; + var date_1969_end = -1; + var date_1970_start = 0; + var date_1999_end = 946684799999; + var date_2000_start = 946684800000; + var date_2099_end = 4102444799999; + var date_2100_start = 4102444800000; + +includes: [dateConstants.js] +---*/ +assert.sameValue(date_1899_end, -2208988800001); +assert.sameValue(date_1900_start, -2208988800000); +assert.sameValue(date_1969_end, -1); +assert.sameValue(date_1970_start, 0); +assert.sameValue(date_1999_end, 946684799999); +assert.sameValue(date_2000_start, 946684800000); +assert.sameValue(date_2099_end, 4102444799999); +assert.sameValue(date_2100_start, 4102444800000); diff --git a/test/harness/decimalToHexString.js b/test/harness/decimalToHexString.js new file mode 100644 index 0000000000..5a114a97be --- /dev/null +++ b/test/harness/decimalToHexString.js @@ -0,0 +1,26 @@ +// Copyright (C) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Including decimalToHexString.js will expose two functions: + + decimalToHexString + decimalToPercentHexString + +includes: [decimalToHexString.js] +---*/ + +assert.sameValue(decimalToHexString(-1), "FFFFFFFF"); +assert.sameValue(decimalToHexString(0.5), "0000"); +assert.sameValue(decimalToHexString(1), "0001"); +assert.sameValue(decimalToHexString(100), "0064"); +assert.sameValue(decimalToHexString(65535), "FFFF"); +assert.sameValue(decimalToHexString(65536), "10000"); + +assert.sameValue(decimalToPercentHexString(-1), "%FF"); +assert.sameValue(decimalToPercentHexString(0.5), "%00"); +assert.sameValue(decimalToPercentHexString(1), "%01"); +assert.sameValue(decimalToPercentHexString(100), "%64"); +assert.sameValue(decimalToPercentHexString(65535), "%FF"); +assert.sameValue(decimalToPercentHexString(65536), "%00"); diff --git a/test/harness/detachArrayBuffer-$262.detachArrayBuffer.js b/test/harness/detachArrayBuffer-$262.detachArrayBuffer.js new file mode 100644 index 0000000000..2d1d0a433c --- /dev/null +++ b/test/harness/detachArrayBuffer-$262.detachArrayBuffer.js @@ -0,0 +1,42 @@ +// Copyright (C) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including detachArrayBuffer.js will expose a function: + + $DETACHBUFFER + + $DETACHBUFFER relies on the presence of a definition for $262.detachArrayBuffer + +includes: [detachArrayBuffer.js,sta.js] +---*/ + +var $262 = { + detachArrayBuffer() { + throw new Test262Error('$262.detachArrayBuffer called.'); + } +}; + +var ab = new ArrayBuffer(1); +var threw = false; + +try { + $DETACHBUFFER(ab); +} catch(err) { + threw = true; + if (err.constructor !== Test262Error) { + $ERROR( + 'Expected a Test262Error, but a "' + err.constructor.name + + '" was thrown.' + ); + } + if (err.message !== '$262.detachArrayBuffer called.') { + $ERROR(`Expected error message: ${err.message}`); + } +} + +if (threw === false) { + $ERROR('Expected a Test262Error, but no error was thrown.'); +} + + diff --git a/test/harness/detachArrayBuffer.js b/test/harness/detachArrayBuffer.js new file mode 100644 index 0000000000..22d3b6c11a --- /dev/null +++ b/test/harness/detachArrayBuffer.js @@ -0,0 +1,34 @@ +// Copyright (C) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including detachArrayBuffer.js will expose a function: + + $DETACHBUFFER + + $DETACHBUFFER relies on the presence of a definition for $262.detachArrayBuffer. + Without a definition, calling $DETACHBUFFER will result in a ReferenceError + +includes: [detachArrayBuffer.js,sta.js] +---*/ + +var ab = new ArrayBuffer(1); +var threw = false; + +try { + $DETACHBUFFER(ab); +} catch(err) { + threw = true; + if (err.constructor !== ReferenceError) { + $ERROR( + 'Expected a ReferenceError, but a "' + err.constructor.name + + '" was thrown.' + ); + } +} + +if (threw === false) { + $ERROR('Expected a ReferenceError, but no error was thrown.'); +} + + diff --git a/test/harness/fnGlobalObject.js b/test/harness/fnGlobalObject.js new file mode 100644 index 0000000000..30198a9f64 --- /dev/null +++ b/test/harness/fnGlobalObject.js @@ -0,0 +1,17 @@ +// Copyright (C) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including fnGlobalObject.js will expose a function: + + fnGlobalObject + + fnGlobalObject returns a reference to the global object. + +includes: [fnGlobalObject.js] +---*/ + +var gO = fnGlobalObject(); + +assert(typeof gO === "object"); +assert.sameValue(gO, this); diff --git a/test/harness/nans.js b/test/harness/nans.js new file mode 100644 index 0000000000..b228838d05 --- /dev/null +++ b/test/harness/nans.js @@ -0,0 +1,18 @@ +// Copyright (C) 2017 Rick Waldron, 2016 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including nans.js will expose: + + var distinctNaNs = [ + 0/0, Infinity/Infinity, -(0/0), Math.pow(-1, 0.5), -Math.pow(-1, 0.5) + ]; + +includes: [nans.js] +---*/ + +assert.sameValue(Number.isNaN(distinctNaNs[0]), true); +assert.sameValue(Number.isNaN(distinctNaNs[1]), true); +assert.sameValue(Number.isNaN(distinctNaNs[2]), true); +assert.sameValue(Number.isNaN(distinctNaNs[3]), true); +assert.sameValue(Number.isNaN(distinctNaNs[4]), true); diff --git a/test/harness/promiseHelper.js b/test/harness/promiseHelper.js new file mode 100644 index 0000000000..59e8b66991 --- /dev/null +++ b/test/harness/promiseHelper.js @@ -0,0 +1,35 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including promiseHelper.js will expose a function: + + checkSequence + + To ensure execution order of some async chain, checkSequence accepts an array + of numbers, each added during some operation, and verifies that they + are in numeric order. + +includes: [promiseHelper.js,sta.js] +---*/ + +assert(checkSequence([1, 2, 3, 4, 5])); + +var threw = false; + +try { + checkSequence([2, 1, 3, 4, 5]); +} catch(err) { + threw = true; + if (err.constructor !== Test262Error) { + $ERROR( + 'Expected a Test262Error, but a "' + err.constructor.name + + '" was thrown.' + ); + } +} + +if (threw === false) { + $ERROR('Expected a Test262Error, but no error was thrown.'); +} + diff --git a/test/harness/error.js b/test/harness/sta-error.js similarity index 100% rename from test/harness/error.js rename to test/harness/sta-error.js diff --git a/test/harness/sta-override-error.js b/test/harness/sta-override-error.js new file mode 100644 index 0000000000..840470b13c --- /dev/null +++ b/test/harness/sta-override-error.js @@ -0,0 +1,23 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Including sta.js will expose two functions: + + Test262Error + $ERROR + + Assert that global $ERROR is overridable +includes: [sta.js] +---*/ +function BaloneyError() {} + +// Override $ERROR +$ERROR = function() { + throw new BaloneyError(); +}; + +assert.throws(BaloneyError, function() { + $ERROR(); +}); diff --git a/test/harness/sta.js b/test/harness/sta.js new file mode 100644 index 0000000000..d439f20294 --- /dev/null +++ b/test/harness/sta.js @@ -0,0 +1,15 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including sta.js will expose two functions: + + Test262Error + $ERROR + +includes: [sta.js] +---*/ + +assert(typeof Test262Error === "function"); +assert(typeof Test262Error.prototype.toString === "function"); +assert(typeof $ERROR === "function"); diff --git a/test/harness/tcoHelper.js b/test/harness/tcoHelper.js new file mode 100644 index 0000000000..0f3a0eeee1 --- /dev/null +++ b/test/harness/tcoHelper.js @@ -0,0 +1,17 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including tcoHelper.js will expose: + + var $MAX_ITERATIONS = 100000; + + This defines the number of consecutive recursive function calls that must be + made in order to prove that stack frames are properly destroyed according to + ES2015 tail call optimization semantics. + +includes: [tcoHelper.js] +---*/ + + +assert.sameValue($MAX_ITERATIONS, 100000); diff --git a/test/harness/testTypedArray-conversions-call-error.js b/test/harness/testTypedArray-conversions-call-error.js new file mode 100644 index 0000000000..20837bed2a --- /dev/null +++ b/test/harness/testTypedArray-conversions-call-error.js @@ -0,0 +1,29 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including testTypedArray.js will expose: + + testTypedArrayConversions() + +includes: [testTypedArray.js] +---*/ +var threw = false; + +try { + testTypedArrayConversions({}, () => {}); +} catch(err) { + threw = true; + if (err.constructor !== TypeError) { + throw new Error( + 'Expected a TypeError, but a "' + err.constructor.name + + '" was thrown.' + ); + } +} + +if (threw === false) { + $ERROR('Expected a TypeError, but no error was thrown.'); +} + + diff --git a/test/harness/testTypedArray-conversions.js b/test/harness/testTypedArray-conversions.js new file mode 100644 index 0000000000..05a44c552a --- /dev/null +++ b/test/harness/testTypedArray-conversions.js @@ -0,0 +1,54 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including testTypedArray.js will expose: + + testTypedArrayConversions() + +includes: [testTypedArray.js] +---*/ +var callCount = 0; +var bcv = { + values: [ + 127, + ], + expected: { + Int8: [ + 127, + ], + Uint8: [ + 127, + ], + Uint8Clamped: [ + 127, + ], + Int16: [ + 127, + ], + Uint16: [ + 127, + ], + Int32: [ + 127, + ], + Uint32: [ + 127, + ], + Float32: [ + 127, + ], + Float64: [ + 127, + ] + } +}; + +testTypedArrayConversions(bcv, function(TA, value, expected, initial) { + var sample = new TA([initial]); + sample.fill(value); + assert.sameValue(initial, 0); + assert.sameValue(sample[0], expected); + callCount++; +}); + diff --git a/test/harness/testTypedArray.js b/test/harness/testTypedArray.js new file mode 100644 index 0000000000..ffb6e9e3b7 --- /dev/null +++ b/test/harness/testTypedArray.js @@ -0,0 +1,39 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including testTypedArray.js will expose: + + var typedArrayConstructors = [ array of TypedArray constructors ] + var TypedArray + + testWithTypedArrayConstructors() + testTypedArrayConversions() + +includes: [testTypedArray.js,arrayContains.js] +---*/ +var TAConstructors = [ + Float64Array, + Float32Array, + Int32Array, + Int16Array, + Int8Array, + Uint32Array, + Uint16Array, + Uint8Array, + Uint8ClampedArray +]; +var length = TAConstructors.length; + +assert( + arrayContains(typedArrayConstructors, TAConstructors), + "All TypedArray constructors are accounted for" +); +assert(typeof TypedArray === "function"); +assert.sameValue(TypedArray, Object.getPrototypeOf(Uint8Array)); + + +var callCount = 0; +testWithTypedArrayConstructors(() => callCount++); +assert.sameValue(callCount, length); + diff --git a/test/harness/timer.js b/test/harness/timer.js new file mode 100644 index 0000000000..911963dcf6 --- /dev/null +++ b/test/harness/timer.js @@ -0,0 +1,18 @@ +// Copyright (c) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: > + Including timer.js will expose: + + setTimeout() + +includes: [timer.js,fnGlobalObject.js] +---*/ + +var gO = fnGlobalObject(); + +assert(typeof setTimeout === "function"); +assert(typeof gO.setTimeout === "function"); +assert.sameValue(gO.setTimeout, setTimeout); + +// TODO: assert semantics diff --git a/test/harness/verifyProperty-value-error.js b/test/harness/verifyProperty-value-error.js new file mode 100644 index 0000000000..84adbe2df4 --- /dev/null +++ b/test/harness/verifyProperty-value-error.js @@ -0,0 +1,39 @@ +// Copyright (C) 2017 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Including propertyHelper.js will expose: + + verifyProperty() + ... + +includes: [propertyHelper.js,sta.js] +---*/ + +var threw = false; +var object = Object.defineProperty({}, "prop", { + value: 1 +}); + +try { + verifyProperty(object, "prop", { + value: 2 + }); +} catch(err) { + threw = true; + if (err.constructor !== Test262Error) { + throw new Error( + 'Expected a Test262Error, but a "' + err.constructor.name + + '" was thrown.' + ); + } + + if (err.message !== 'descriptor value should be 2 Expected SameValue(«1», «0») to be true') { + $ERROR('The error thrown did not define the specified message.'); + } +} + +if (threw === false) { + $ERROR('Expected a Test262Error, but no error was thrown.'); +} diff --git a/test/language/expressions/call/tco-call-args.js b/test/language/expressions/call/tco-call-args.js index a522abf526..b18641651a 100644 --- a/test/language/expressions/call/tco-call-args.js +++ b/test/language/expressions/call/tco-call-args.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/call/tco-member-args.js b/test/language/expressions/call/tco-member-args.js index 40d89c1760..24b35741c6 100644 --- a/test/language/expressions/call/tco-member-args.js +++ b/test/language/expressions/call/tco-member-args.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/comma/tco-final.js b/test/language/expressions/comma/tco-final.js index 9a892d1376..395c28e121 100644 --- a/test/language/expressions/comma/tco-final.js +++ b/test/language/expressions/comma/tco-final.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/conditional/tco-cond.js b/test/language/expressions/conditional/tco-cond.js index cfad71245d..b43251c9ea 100644 --- a/test/language/expressions/conditional/tco-cond.js +++ b/test/language/expressions/conditional/tco-cond.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/conditional/tco-pos.js b/test/language/expressions/conditional/tco-pos.js index 8fc828a111..ea20871216 100644 --- a/test/language/expressions/conditional/tco-pos.js +++ b/test/language/expressions/conditional/tco-pos.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/logical-and/tco-right.js b/test/language/expressions/logical-and/tco-right.js index 6570ae03af..7f34dcfdbd 100644 --- a/test/language/expressions/logical-and/tco-right.js +++ b/test/language/expressions/logical-and/tco-right.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/logical-or/tco-right.js b/test/language/expressions/logical-or/tco-right.js index 7e8608c5e3..bd2bd16161 100644 --- a/test/language/expressions/logical-or/tco-right.js +++ b/test/language/expressions/logical-or/tco-right.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/expressions/tagged-template/tco-call.js b/test/language/expressions/tagged-template/tco-call.js index 05b29e2275..180f474719 100644 --- a/test/language/expressions/tagged-template/tco-call.js +++ b/test/language/expressions/tagged-template/tco-call.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ (function() { diff --git a/test/language/expressions/tagged-template/tco-member.js b/test/language/expressions/tagged-template/tco-member.js index 2a1d252891..ea1fbbddc8 100644 --- a/test/language/expressions/tagged-template/tco-member.js +++ b/test/language/expressions/tagged-template/tco-member.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ (function() { diff --git a/test/language/expressions/tco-pos.js b/test/language/expressions/tco-pos.js index 00cdb88527..83ec011557 100644 --- a/test/language/expressions/tco-pos.js +++ b/test/language/expressions/tco-pos.js @@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization. esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/block/tco-stmt-list.js b/test/language/statements/block/tco-stmt-list.js index 8a04d86c59..cda797844e 100644 --- a/test/language/statements/block/tco-stmt-list.js +++ b/test/language/statements/block/tco-stmt-list.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/block/tco-stmt.js b/test/language/statements/block/tco-stmt.js index a888355952..d232faf444 100644 --- a/test/language/statements/block/tco-stmt.js +++ b/test/language/statements/block/tco-stmt.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/do-while/tco-body.js b/test/language/statements/do-while/tco-body.js index 664a05ee57..1e55dbf578 100644 --- a/test/language/statements/do-while/tco-body.js +++ b/test/language/statements/do-while/tco-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/for/tco-const-body.js b/test/language/statements/for/tco-const-body.js index 238ad15a57..2cd919bd2c 100644 --- a/test/language/statements/for/tco-const-body.js +++ b/test/language/statements/for/tco-const-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/for/tco-let-body.js b/test/language/statements/for/tco-let-body.js index 614b3f08b4..5d13ee4e80 100644 --- a/test/language/statements/for/tco-let-body.js +++ b/test/language/statements/for/tco-let-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/for/tco-lhs-body.js b/test/language/statements/for/tco-lhs-body.js index b6a05b290a..1ecdaf6756 100644 --- a/test/language/statements/for/tco-lhs-body.js +++ b/test/language/statements/for/tco-lhs-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/for/tco-var-body.js b/test/language/statements/for/tco-var-body.js index c4c8032c9b..13a1157204 100644 --- a/test/language/statements/for/tco-var-body.js +++ b/test/language/statements/for/tco-var-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/if/tco-else-body.js b/test/language/statements/if/tco-else-body.js index 93f6573b03..ff3ee9c2d0 100644 --- a/test/language/statements/if/tco-else-body.js +++ b/test/language/statements/if/tco-else-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/if/tco-if-body.js b/test/language/statements/if/tco-if-body.js index a1d9f96226..7ab6d054bf 100644 --- a/test/language/statements/if/tco-if-body.js +++ b/test/language/statements/if/tco-if-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/labeled/tco.js b/test/language/statements/labeled/tco.js index 2c5ba79499..5d059a3542 100644 --- a/test/language/statements/labeled/tco.js +++ b/test/language/statements/labeled/tco.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/return/tco.js b/test/language/statements/return/tco.js index fadaaa1dfa..439926f996 100644 --- a/test/language/statements/return/tco.js +++ b/test/language/statements/return/tco.js @@ -5,7 +5,7 @@ description: Expression within statement is a candidate for tail-call optimizati esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/switch/tco-case-body-dflt.js b/test/language/statements/switch/tco-case-body-dflt.js index d4d51b725f..449df6b844 100644 --- a/test/language/statements/switch/tco-case-body-dflt.js +++ b/test/language/statements/switch/tco-case-body-dflt.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/switch/tco-case-body.js b/test/language/statements/switch/tco-case-body.js index aa0a7a6e40..ee23461ddb 100644 --- a/test/language/statements/switch/tco-case-body.js +++ b/test/language/statements/switch/tco-case-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/switch/tco-dftl-body.js b/test/language/statements/switch/tco-dftl-body.js index f7df595bf6..4f1ad1a10e 100644 --- a/test/language/statements/switch/tco-dftl-body.js +++ b/test/language/statements/switch/tco-dftl-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/try/tco-catch-finally.js b/test/language/statements/try/tco-catch-finally.js index 0bfc33f3d8..31d1dc6703 100644 --- a/test/language/statements/try/tco-catch-finally.js +++ b/test/language/statements/try/tco-catch-finally.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/try/tco-catch.js b/test/language/statements/try/tco-catch.js index ed5fe24796..7167f632f0 100644 --- a/test/language/statements/try/tco-catch.js +++ b/test/language/statements/try/tco-catch.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/try/tco-finally.js b/test/language/statements/try/tco-finally.js index 2cc0836d85..1ee0295fae 100644 --- a/test/language/statements/try/tco-finally.js +++ b/test/language/statements/try/tco-finally.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0; diff --git a/test/language/statements/while/tco-body.js b/test/language/statements/while/tco-body.js index b897c8087a..0168e5685e 100644 --- a/test/language/statements/while/tco-body.js +++ b/test/language/statements/while/tco-body.js @@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio esid: static-semantics-hasproductionintailposition flags: [onlyStrict] features: [tail-call-optimization] -includes: [tco-helper.js] +includes: [tcoHelper.js] ---*/ var callCount = 0;