js/src/tests/test262/ch11/11.11/11.11.1/S11.11.1_A3_T2.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 // Copyright 2009 the Sputnik authors.  All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     4 /**
     5  * If ToBoolean(x) is false, return x
     6  *
     7  * @path ch11/11.11/11.11.1/S11.11.1_A3_T2.js
     8  * @description Type(x) and Type(y) vary between primitive number and Number object
     9  */
    11 //CHECK#1
    12 if ((-0 && -1) !== 0) {
    13   $ERROR('#1.1: (-0 && -1) === 0');
    14 } else {
    15   if ((1 / (-0 && -1)) !== Number.NEGATIVE_INFINITY) {
    16     $ERROR('#1.2: (-0 && -1) === -0');
    17   }
    18 }
    20 //CHECK#2
    21 if ((0 && new Number(-1)) !== 0) {
    22   $ERROR('#2.1: (0 && new Number(-1)) === 0');
    23 } else {
    24   if ((1 / (0 && new Number(-1))) !== Number.POSITIVE_INFINITY) {
    25     $ERROR('#2.2: (0 && new Number(-1)) === +0');
    26   }
    27 }
    29 //CHECK#3
    30 if ((isNaN(NaN && 1)) !== true) {
    31   $ERROR('#3: (NaN && 1) === Not-a-Number');
    32 }

mercurial