2011-03-23 21:36:42 +00:00
|
|
|
This directory contains code for binding the test262 test suite
|
2015-10-08 14:40:37 +00:00
|
|
|
into the v8 test harness. The tests are checked out as a dependency from
|
2011-03-23 21:36:42 +00:00
|
|
|
|
2015-10-08 14:40:37 +00:00
|
|
|
https://chromium.googlesource.com/external/github.com/tc39/test262
|
2011-03-23 21:36:42 +00:00
|
|
|
|
2015-11-04 10:52:28 +00:00
|
|
|
at a revision specified in the DEPS file as 'data' in this directory. They are
|
2015-10-08 14:40:37 +00:00
|
|
|
fetched with 'gclient sync'. To update to a newer version, please change the
|
|
|
|
DEPS file.
|
|
|
|
|
|
|
|
Using a newer version, e.g. 'deadbeef' may be possible but the tests are only
|
2015-11-04 10:52:28 +00:00
|
|
|
known to pass (and indeed run) with the DEPS revision. Example:
|
2011-03-23 21:36:42 +00:00
|
|
|
|
2014-02-28 14:16:50 +00:00
|
|
|
cd data
|
2015-10-08 14:40:37 +00:00
|
|
|
git fetch
|
|
|
|
git checkout deadbeef
|
2011-03-23 21:36:42 +00:00
|
|
|
|
|
|
|
If you do update to a newer revision you may have to change the test
|
|
|
|
harness adapter code since it uses internal functionality from the
|
|
|
|
harness that comes bundled with the tests. You will most likely also
|
|
|
|
have to update the test expectation file.
|