Dan Ehrenberg
007d3b1eb7
Remove a blank line to stop confusing YAML parsers
...
V8 ran into an issue where the YAML parser our test setup is using
didn't understand the newline, and failed to parser the negative
test expectation below, causing the test to fail. This patch fixes
the issue.
2016-03-04 15:01:01 -05:00
Gorkem Yakin
6e912b0825
Merge pull request #518 from anba/typedarray_getownpropdesc_fixes
...
Fix test bugs
2016-03-02 13:22:29 -08:00
Gorkem Yakin
e9c7608f6f
Merge pull request #517 from bocoup/typedarray-prototype
2016-03-02 13:16:03 -08:00
Leonardo Balter
7445d77d6d
Update descriptor tests for %TypedArray%.prototype properties
2016-03-02 13:15:03 -08:00
Leonardo Balter
02cdfacd31
Add tests for %TypedArray%.prototype get methods
...
Includes buffer, byteLength, byteOffset, length, and @@toStringTag
2016-03-02 13:15:01 -08:00
Leonardo Balter
6c56658974
Add tests for _TypedArray_.prototype methods
2016-03-01 15:36:34 -05:00
Gorkem Yakin
5a77ac86a9
Merge branch 'bocoup/for-restrictions'
2016-02-25 14:22:09 -08:00
Mike Pennisi
4dd2d9b7ee
Add tests for IterationStatement early errors
2016-02-25 14:21:08 -08:00
Gorkem Yakin
b35b39c4aa
Merge branch 'bocoup/module-code'
2016-02-25 13:51:47 -08:00
Gorkem Yakin
a5e8ac18c4
Merge pull request #513 from bocoup/runner-deprecate
...
Console Runner: Revert Parallelization and Formally Deprecate
2016-02-25 13:50:26 -08:00
Gorkem Yakin
304dbf0569
Merge 'rwaldron/exponentiation-operator'
2016-02-23 14:25:05 -08:00
Gorkem Yakin
ed32ae6f4a
Convert "info" to "description"
2016-02-23 14:24:08 -08:00
Rick Waldron
e0afd42914
descriptions and info
2016-02-23 16:42:11 -05:00
André Bargull
1517615a21
Fix test bugs
2016-02-23 18:55:06 +01:00
Rick Waldron
79dfcf3e85
Restore missing object definitions
2016-02-22 19:17:24 -05:00
Rick Waldron
b92e68646d
improved info and description
2016-02-22 16:49:00 -05:00
Rick Waldron
104a134bc2
restore "info"
2016-02-22 16:41:45 -05:00
Gorkem Yakin
57d3e2216f
Merge pull request #491 from bocoup/489-date-constructor
...
Fix location based return value for Date on subclassing tests
2016-02-22 13:18:40 -08:00
Rick Waldron
2a962f74be
id => esid
2016-02-22 14:47:47 -05:00
Rick Waldron
2a112a3190
Exponentiation Operator tests
2016-02-22 14:47:47 -05:00
Leonardo Balter
d9a277aa7c
Fix location based return value for Date on subclassing tests
...
Fixes #489
2016-02-22 13:53:43 -05:00
Gorkem Yakin
fc9bdb7cd5
Merge pull request #516 from bocoup/id-esid
...
s/id/esid
2016-02-22 09:56:03 -08:00
Leonardo Balter
bf782c8421
s/id/esid
...
Fixes #477
2016-02-22 09:47:42 -05:00
Gorkem Yakin
bd33b2b8e5
Merge pull request #509 from bocoup/typedarray-object-set
...
Add tests for _TypedArrays_(object) using object properties
2016-02-19 16:33:40 -08:00
Mike Pennisi
82abd59f35
Add test for strict mode of module code
2016-02-19 17:39:41 -05:00
Mike Pennisi
5006055c99
Add tests for `await` as an identifier
2016-02-19 17:39:41 -05:00
Mike Pennisi
a6dcd0dcca
Add tests for position of module declarations
...
Assert that ImportDeclaration and ExportDeclaration match only the
ModuleItem symbol.
According to the definition of HostResolveImportedModule, it is
acceptable for an implementation to throw a SyntaxError in the event
that a requested module can neither be found nor created:
> If a Module Record corresponding to the pair referencingModule,
> specifier does not exist or cannot be created, an exception must be
> thrown.
In order to reliably detect a SyntaxError in response to the correct
interpretation of the grammar (and not a SyntaxError from an *incorrect*
interpretation of the grammar followed by a failure to resolve the
requested module), the ModuleSpecifier of ExportDeclarations should
describe a valid resource.
2016-02-19 17:36:17 -05:00
Gorkem Yakin
7d345fc95b
Merge pull request #484 from ljharb/object_get_own_property_descriptors
...
Add Object.getOwnPropertyDescriptors tests
2016-02-19 12:08:37 -08:00
Jordan Harband
a6fad62d7c
Last minute fixes
2016-02-19 11:27:31 -08:00
Gorkem Yakin
07aafd0c63
Merge pull request #505 from anba/intl_name
...
Add coverage for 'name' property of Intl built-in functions
2016-02-19 11:04:38 -08:00
Mike Pennisi
b6a4910eb5
Console Runner: Formally Deprecate
...
Document the console runner's "deprecated" status. Move the
documentation to a less central location in the project's file hierarchy.
2016-02-19 10:49:15 -05:00
Mike Pennisi
3771cb3acc
Revert "Enable parallel test execution in console runner"
...
This reverts commit 7ae29d49ae
.
2016-02-19 10:46:18 -05:00
Mike Pennisi
4dd257d7e6
Revert "Test runner: Avoid race condition"
...
This reverts commit 217812891c
.
2016-02-19 10:46:17 -05:00
Mike Pennisi
ccf0adfc62
Revert "Runner: Re-use lock to share access to stdout"
...
This reverts commit b791cc4fbe
.
2016-02-19 10:46:14 -05:00
Gorkem Yakin
8dd63de7b6
Merge pull request #496 from bocoup/495-enumerate
...
Update tests for Reflect.enumerate and Proxy enumerate trap
2016-02-18 13:44:50 -08:00
Leonardo Balter
efced6eb32
Add test to assert Reflect.enumerate is now undefined
...
Ref #495
2016-02-18 16:40:00 -05:00
Leonardo Balter
65241f1e93
Add test to assert Proxy enumerate trap is not triggered anymore
...
Ref #495
2016-02-18 16:39:41 -05:00
Leonardo Balter
63c1f1ca88
Remove tests for Reflect.enumerate
...
Ref #495
2016-02-18 15:57:14 -05:00
Leonardo Balter
e223738369
Remove tests for Proxy enumerate
...
Ref #495
2016-02-18 15:57:14 -05:00
Gorkem Yakin
0bd4e9d2ea
Merge pull request #511 from bocoup/typedarray-from-mapfn
...
Fix test for TypedArrays.from on callable function
2016-02-18 12:24:13 -08:00
Leonardo Balter
a61fca93fa
Fix test for TypedArrays.from on callable function
...
TypedArrays constructors are still callable even if they trigger a
TypeError Exception when a new target is not defined
2016-02-18 13:39:49 -05:00
Jordan Harband
6f05b008dc
Encapsulate helper function's helper function
2016-02-17 15:01:26 -08:00
Jordan Harband
59dad9172b
Make proxy traps helper test a bit more robust.
...
Per https://github.com/tc39/test262/pull/484#discussion_r53228232
2016-02-17 12:50:26 -08:00
Mike Pennisi
62857dcba7
Rename IterationStatement tests
...
- Prefix file names to explicitly describe the "head" position
- Remove statement name suffix as this information is reflected by each
file's location within the file hierarchy
2016-02-16 12:03:21 -05:00
Jordan Harband
d530c87b41
Create `proxyTrapsHelper` to throw on all traps by default.
2016-02-13 15:56:47 -08:00
Leonardo Balter
c82ab8cdbd
Add extra tests for _TypedArrays_(object) using object properties
2016-02-13 03:55:53 -02:00
Gorkem Yakin
dbcc8cadf3
Merge pull request #507 from bocoup/remove-unused-file
...
Remove unused harness file
2016-02-12 17:16:01 -08:00
Gorkem Yakin
834a28cb95
Merge pull request #502 from bocoup/runner-race
...
Avoid Race Conditions in Test Runner
2016-02-12 17:13:51 -08:00
Gorkem Yakin
eeb44cbe09
Merge pull request #500 from bocoup/prms-guard-thenable-opt
...
Promise: Add tests to disallow faulty optimization
2016-02-12 17:06:34 -08:00
Gorkem Yakin
5de18ae0b6
Merge pull request #501 from bocoup/prms-then-ctor-access-count
...
Promise: Add test for constructor access count
2016-02-12 16:54:20 -08:00