aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js51
1 files changed, 0 insertions, 51 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js b/test/suite/sputnik_converted/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js
deleted file mode 100644
index d5bd7f7c6..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js
+++ /dev/null
@@ -1,51 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S11.5.2_A4_T9;
- * @section: 11.5.2;
- * @assertion: The result of division is determined by the specification of IEEE 754 arithmetics;
- * @description: If the magnitude is too large to represent, the result is then an infinity of appropriate sign;
- */
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.5.2_A4_T9",
-
-path: "TestCases/11_Expressions/11.5_Multiplicative_Operators/11.5.2_Applying_the_slash_Operator/S11.5.2_A4_T9.js",
-
-assertion: "The result of division is determined by the specification of IEEE 754 arithmetics",
-
-description: "If the magnitude is too large to represent, the result is then an infinity of appropriate sign",
-
-test: function testcase() {
- //CHECK#1
-if (Number.MAX_VALUE / 0.9 !== Number.POSITIVE_INFINITY) {
- $ERROR('#1: Number.MAX_VALUE / 0.9 === Number.POSITIVE_INFINITY. Actual: ' + (Number.MAX_VALUE / 0.9));
-}
-
-//CHECK#2
-if (Number.MAX_VALUE / -0.9 !== Number.NEGATIVE_INFINITY) {
- $ERROR('#2: Number.MAX_VALUE / -0.9 === Number.NEGATIVE_INFINITY. Actual: ' + (Number.MAX_VALUE / -0.9));
-}
-
-//CHECK#3
-if (Number.MAX_VALUE / 1 !== Number.MAX_VALUE) {
- $ERROR('#3: Number.MAX_VALUE / 1 === Number.MAX_VALUE. Actual: ' + (Number.MAX_VALUE / 1));
-}
-
-//CHECK#4
-if (Number.MAX_VALUE / -1 !== -Number.MAX_VALUE) {
- $ERROR('#4: Number.MAX_VALUE / -1 === -Number.MAX_VALUE. Actual: ' + (Number.MAX_VALUE / -1));
-}
-
-//CHECK#5
-if (Number.MAX_VALUE / (Number.MAX_VALUE / 0.9) === (Number.MAX_VALUE / Number.MAX_VALUE) / 0.9) {
- $ERROR('#5: Number.MAX_VALUE / (Number.MAX_VALUE / 0.9) !== (Number.MAX_VALUE / Number.MAX_VALUE) / 0.9');
-}
-
- }
-});
-