Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: test/mjsunit/harmony/computed-property-names.js

Issue 850773004: Computed property names: Enable test on windows again (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Full url in todo Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/computed-property-names.js
diff --git a/test/mjsunit/harmony/computed-property-names.js b/test/mjsunit/harmony/computed-property-names.js
index 36ce6754d598b28f979f86e305bfd896bf901ff8..1ec8aab51c28fcc62984bbcb1b80cc590daa184f 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]);
})();
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698