'v8_linux_rel' is failing. The problem seems to be that there are some tests
executed with the --harmony flag, but their expected result is not correct when
using harmony's ToLength.

For instance, the following test
(test/test262-es6/data/test/suite/ch15/15.4/15.4.4/15.4.4.14/15.4.4.14-3-8.js):

function testcase() {
   var obj = { 0: 0, length: Infinity };

   return Array.prototype.indexOf.call(obj, 0) === -1;
}

Returns -1 in master (as TO_UINT32(Infinity) returns 0 and if length is zero, indexOf() returns -1). However, ToLength(Infinity) in harmony returns Infinity
and in consequence indexOf(obj, 0) returns 0.

This suite is not part of v8 codebase. I don't know what should I do? Would it
be possible to skip the failing test in Harmony?

https://codereview.chromium.org/553623004/

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to