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

Unified Diff: test/mjsunit/harmony/math-cbrt.js

Issue 195123002: Harmony: move math features to es-staging. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: done Created 6 years, 9 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
Index: test/mjsunit/harmony/math-cbrt.js
diff --git a/test/mjsunit/harmony/math-cbrt.js b/test/mjsunit/harmony/math-cbrt.js
deleted file mode 100644
index 83d9eb5d7597bd62c16f29580b7979f1a27c4a6f..0000000000000000000000000000000000000000
--- a/test/mjsunit/harmony/math-cbrt.js
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --harmony-maths
-
-assertTrue(isNaN(Math.cbrt(NaN)));
-assertTrue(isNaN(Math.cbrt(function() {})));
-assertTrue(isNaN(Math.cbrt({ toString: function() { return NaN; } })));
-assertTrue(isNaN(Math.cbrt({ valueOf: function() { return "abc"; } })));
-assertEquals("Infinity", String(1/Math.cbrt(0)));
-assertEquals("-Infinity", String(1/Math.cbrt(-0)));
-assertEquals("Infinity", String(Math.cbrt(Infinity)));
-assertEquals("-Infinity", String(Math.cbrt(-Infinity)));
-
-for (var i = 1E-100; i < 1E100; i *= Math.PI) {
- assertEqualsDelta(i, Math.cbrt(i*i*i), i * 1E-15);
-}
-
-for (var i = -1E-100; i > -1E100; i *= Math.E) {
- assertEqualsDelta(i, Math.cbrt(i*i*i), -i * 1E-15);
-}
-
-// Let's be exact at least for small integers.
-for (var i = 2; i < 10000; i++) {
- assertEquals(i, Math.cbrt(i*i*i));
-}

Powered by Google App Engine
This is Rietveld 408576698