mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
Make all harness/* file names consistent; update occurrences in test
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
This commit is contained in:
parent
53842533b7
commit
86209d8fd9
@ -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;
|
@ -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") {
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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]
|
||||
---*/
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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() {
|
||||
|
@ -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() {
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user