| Index: test/mjsunit/mjsunit.js
|
| diff --git a/test/mjsunit/mjsunit.js b/test/mjsunit/mjsunit.js
|
| index 6f6e3230d57fa27265db8a74dca11168f2aa3682..033c78f4b07762fe6fcbcc58194d783843766679 100644
|
| --- a/test/mjsunit/mjsunit.js
|
| +++ b/test/mjsunit/mjsunit.js
|
| @@ -221,6 +221,8 @@ var assertUnreachable;
|
|
|
|
|
| assertSame = function assertSame(expected, found, name_opt) {
|
| + // TODO(mstarzinger): We should think about using Harmony's egal operator
|
| + // or the function equivalent Object.is() here.
|
| if (found === expected) {
|
| if (expected !== 0 || (1 / expected) == (1 / found)) return;
|
| } else if ((expected !== expected) && (found !== found)) {
|
|
|