Mike Pennisi
e1cd1e7f85
Update and tests for %RegExpPrototype% methods
...
A recent web-compatability change to ECMA262 modified the semantics of
the accessor methods on the %RegExpPrototype% intrinsic--the "get"
accessors now include steps dedicated to the case where the "this" value
is the %RegExpPrototype% object itself.
Remove the tests that have been invalidated by this change, introduce
tests asserting the new behavior, and extend coverage for other possible
"this" values.
2016-06-29 17:07:46 -04:00
Leonardo Balter
f3bfaa692d
Expand tests for Math.log1p
2016-06-27 16:04:17 -04:00
Leonardo Balter
080afac906
Update tests for Math.{sign,sin,trunc}
2016-06-27 16:04:17 -04:00
Leonardo Balter
e3e7a510ff
Expand tests for Math.imul
2016-06-27 16:04:17 -04:00
Leonardo Balter
80c1c46b53
Update tests for Math.hypot
2016-06-27 16:04:16 -04:00
Leonardo Balter
f88c93520d
Expand tests for Math.fround
2016-06-27 16:04:16 -04:00
Leonardo Balter
d6eb13b4b5
Expand tests for Math.clz32
2016-06-27 16:04:15 -04:00
Leonardo Balter
440211e96a
Update tests for Math.acosh
2016-06-27 16:04:15 -04:00
Leonardo Balter
561ac9e473
Extend coverage for Math.abs
2016-06-27 16:04:15 -04:00
Leonardo Balter
0f29f57fdc
Update Math functions to handle distinct -0 and +0
2016-06-27 16:04:15 -04:00
Leonardo Balter
13e01e4340
Add tests for Math.{max,min} handling zeros
2016-06-27 16:04:14 -04:00
Leonardo Balter
ec3a89ebb8
Add test for the Math object
2016-06-27 16:04:14 -04:00
Leonardo Balter
059b7cd4a3
Remove invalid tests
...
ConversionError and RegExpError tests are methods that existed on
something that preceeded a IE9 Standard. They do not exist in the
specs, at least since ES5.
It's not test262 responsibility to maintain these tests as these
features can be freely implemented by any runtime.
2016-06-27 15:57:56 -04:00
Mike Pennisi
1ec40f349a
Re-write tests for Promise.prototype internal slots
...
The original implementation of the test for the absense of a
[[PromiseState]] internal slot did not actually assert the documented
semantics. Re-implement the test to rely on the IsPromise abstract
operation (via `Promise.prototype.then`) to accurately ensure that the
object does not have a [[PromiseState]] internal slot.
In relying on the semantics of the `instanceof` operator, the original
test for the [[Prototype]] internal slot was imprecise (the assertion
could be satisfied if additional objects were incorrectly defined on the
prototype chain). Re-write the test to assert the value of the
[[Prototype]] internal slot directly.
2016-06-27 15:31:01 -04:00
Mike Pennisi
cc7c77b9a1
Add test for Promise prototype property descriptor
2016-06-27 15:31:00 -04:00
Mike Pennisi
23659d6128
Extend coverage for Promise.prototype.catch
2016-06-27 15:31:00 -04:00
Mike Pennisi
12902b29c0
Add tests for invocation of Promise capability fns
2016-06-27 15:26:36 -04:00
Mike Pennisi
c62700c8ef
Assert iterator protocol for Promise methods
2016-06-27 15:26:35 -04:00
Mike Pennisi
2b5efe135c
Add test for abrupt completion during Promise.all
2016-06-27 15:19:48 -04:00
Mike Pennisi
b458d9bcc4
Add more tests for Promise resolution
...
Ensure that resolution is ignored for Promises that have already been
rejected.
2016-06-27 15:19:48 -04:00
Mike Pennisi
023ab45cf0
Extend tests for Promise resolve and reject fns
...
Assert expected return values in all cases.
2016-06-24 20:17:24 -04:00
Leonardo Balter
9ff1cbb50c
Fix range check tests for DataView#set methods
...
Fixes gh-685
2016-06-23 17:34:58 -04:00
Leonardo Balter
1eaae52eb8
Add prop-desc tests for Number.prototype properties
2016-06-23 14:42:40 -04:00
Leonardo Balter
4dd7e5aa4b
Extend Number tests to assert abrupt completions
2016-06-23 14:42:40 -04:00
Leonardo Balter
9223f56344
Update and add basic prop-desc tests for Number
...
and Number.prototype
2016-06-23 14:42:40 -04:00
Leonardo Balter
8066b9ecaf
Add tests for Number.{parseFloat,parseInt}
2016-06-23 14:42:39 -04:00
Leonardo Balter
47f806ecef
Update tests for Number.NaN
2016-06-23 14:42:39 -04:00
Leonardo Balter
4492b8032b
Add tests for Number.isSafeInteger
2016-06-23 14:42:39 -04:00
Leonardo Balter
3685e6b7b3
Update and add tests for Number.isNaN
2016-06-23 14:42:39 -04:00
Leonardo Balter
c246bc7d09
Add tests for Number.isInteger
2016-06-23 14:42:39 -04:00
Leonardo Balter
46d8c3d6b8
Add tests for Number.isFinite
2016-06-23 14:42:39 -04:00
Leonardo Balter
454b8f10b8
Update and add tests for Number.POSITIVE_INFINITY
2016-06-23 14:42:39 -04:00
Leonardo Balter
7e55e54538
Update and add tests for Number.NEGATIVE_INFINITY
2016-06-23 14:42:39 -04:00
Leonardo Balter
36909a0595
Add tests for Number.EPSILON
2016-06-23 14:42:38 -04:00
Tom Care
149cd4ae9a
Merge pull request #673 from bocoup/relax-test
...
Relax test for forbidden extension
2016-06-22 15:41:46 -07:00
Leonardo Balter
ac628975a3
Remove unused variables
...
Fixes gh-597
2016-06-21 13:03:22 -04:00
Leonardo Balter
813bb5166c
Remove precision-equivalency tests
...
Due to specs approximation values, some tests are invalid as the harness
helpers rely on another approximated values as Math.LN2.
2016-06-20 17:44:11 -04:00
Leonardo Balter
91d06f50b5
Update esid for Object.getOwnPropertyDescriptors
2016-06-15 18:09:58 -04:00
Leonardo Balter
60e61a15e0
Add tests for Number#toPrecision
2016-06-15 17:59:12 -04:00
Mike Pennisi
c0a3b2db7d
Relax test for forbidden extension
...
According to ES2015, functions created using the FunctionDeclaration
syntax may define "own" properties named "caller" and "arguments" as
long as this is done using the AddRestrictedFunctionProperties abstract
operation.
Remove the assertions that prohibit this extension.
2016-06-14 15:26:12 -04:00
Leonardo Balter
cfc77c83e3
Update tests for TypedArrays, DataView and ArrayBuffer
...
Ref tc39/ecma262#410
2016-06-13 16:17:09 -04:00
jugglinmike
a2b3370b0b
Add tests for additional uses of @@toPrimitive ( #666 )
2016-06-10 15:08:59 -04:00
jugglinmike
ee7496f713
Add tests for usage of IsArray ( #667 )
2016-06-10 15:07:40 -04:00
jugglinmike
f1c9cef154
Add test for NaN in OrdinaryDefineOwnProperty ( #648 )
...
These semantics are currently contested, but the test reflects the
intended behavior of the latest version of the specification.
2016-06-08 12:40:39 -04:00
jugglinmike
07dcff3e27
Add tests for CreateByeDataBlock ( #663 )
...
Ensure that all bytes of newly-created Data Block are initialized to
zero.
2016-06-03 12:38:03 -04:00
Leonardo Balter
c7f9b12cc4
Add tests for Array.prototype.includes
2016-06-01 15:35:00 -04:00
jugglinmike
30d4c04182
Improve test coverage for Symbol ( #645 )
2016-05-30 16:55:45 -04:00
Leonardo Balter
f912927b1f
[TypedArrays] Apply code consistency fixes after checks with JSHint
2016-05-27 15:59:14 -04:00
Leonardo Balter
56b988883e
Add tests for %TypedArray%.prototype.includes
2016-05-25 10:31:55 -04:00
Leonardo Balter
d3effa125f
Add tests for DataView.prototype.setUint32
2016-05-25 10:28:01 -04:00