aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js')
-rw-r--r--test/suite/sputnik_converted/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/suite/sputnik_converted/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js b/test/suite/sputnik_converted/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js
deleted file mode 100644
index a88e6f143..000000000
--- a/test/suite/sputnik_converted/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S8.5_A14_T2;
- * @section: 8.5, 7.8.3;
- * @assertion: When number absolute value is bigger of 2**1024 should convert to Infinity;
- * @description: Create number smaller of -2**1024;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S8.5_A14_T2",
-
-path: "TestCases/08_Types/8.5_The_Number_Type/S8.5_A14_T2.js",
-
-assertion: "When number absolute value is bigger of 2**1024 should convert to Infinity",
-
-description: "Create number smaller of -2**1024",
-
-test: function testcase() {
- //CHECK #1
-if (-1e+308*3 !== -Infinity){
- $ERROR('#1: -1e+308*3 === Infinity. Actual: ' + (-1e+308*3));
-}
-
-//CHECK #2
-if ((-1*(Math.pow(2,53))*(Math.pow(2,971))) !== -Infinity){
- $ERROR('#2: (-1*(Math.pow(2,53))*(Math.pow(2,971))) === Infinity. Actual: ' + ((-1*(Math.pow(2,53))*(Math.pow(2,971)))));
-}
-
- }
-});
-