From c8124f932c899e4b5d5381ab7fc88f7518a7c76d Mon Sep 17 00:00:00 2001 From: arv Date: Thu, 15 Jan 2015 16:20:00 -0800 Subject: [PATCH] Computed property names: Enable test on windows again Enable test on windows again and disable the problematic lines only. BUG=v8:3815 LOG=N R=dslomov@chromium.org Review URL: https://codereview.chromium.org/850773004 Cr-Commit-Position: refs/heads/master@{#26086} --- test/mjsunit/harmony/computed-property-names.js | 10 ++++++---- test/mjsunit/mjsunit.status | 3 --- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/test/mjsunit/harmony/computed-property-names.js b/test/mjsunit/harmony/computed-property-names.js index 36ce675..1ec8aab 100644 --- a/test/mjsunit/harmony/computed-property-names.js +++ b/test/mjsunit/harmony/computed-property-names.js @@ -128,16 +128,18 @@ function ID(x) { [1e55]: 'B', [0.000001]: 'C', [-0]: 'D', - [Infinity]: 'E', - [-Infinity]: 'F', + // TODO(arv): https://code.google.com/p/v8/issues/detail?id=3815 + // [Infinity]: 'E', + // [-Infinity]: 'F', [NaN]: 'G', }; assertEquals('A', object['1.2']); assertEquals('B', object['1e+55']); assertEquals('C', object['0.000001']); assertEquals('D', object[0]); - assertEquals('E', object[Infinity]); - assertEquals('F', object[-Infinity]); + // TODO(arv): https://code.google.com/p/v8/issues/detail?id=3815 + // assertEquals('E', object[Infinity]); + // assertEquals('F', object[-Infinity]); assertEquals('G', object[NaN]); })(); diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index 68cbeae..2e76927 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -512,9 +512,6 @@ # BUG(v8:3435) 'debug-script-breakpoints': [PASS, FAIL], - - # BUG(v8:3815). TODO(arv): Investigate. - 'harmony/computed-property-names': [SKIP] }], # 'system == windows' ############################################################################## -- 2.7.4