js/src/tests/js1_2/Array/array_split_1.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 // |reftest| skip -- obsolete test
     2 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     3 /* This Source Code Form is subject to the terms of the Mozilla Public
     4  * License, v. 2.0. If a copy of the MPL was not distributed with this
     5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     8 /**
     9    File Name:          array_split_1.js
    10    ECMA Section:       Array.split()
    11    Description:
    13    These are tests from free perl suite.
    15    Author:             christine@netscape.com
    16    Date:               12 november 1997
    17 */
    19 var SECTION = "Free Perl";
    20 var VERSION = "JS1_2";
    21 var TITLE   = "Array.split()";
    23 startTest();
    25 writeHeaderToLog( SECTION + " "+ TITLE);
    28 new TestCase( SECTION,
    29 	      "('a,b,c'.split(',')).length",
    30 	      3,
    31 	      ('a,b,c'.split(',')).length );
    33 new TestCase( SECTION,
    34 	      "('a,b'.split(',')).length",
    35 	      2,
    36 	      ('a,b'.split(',')).length );
    38 new TestCase( SECTION,
    39 	      "('a'.split(',')).length",
    40 	      1,
    41 	      ('a'.split(',')).length );
    43 /*
    44  * Deviate from ECMA by never splitting an empty string by any separator
    45  * string into a non-empty array (an array of length 1 that contains the
    46  * empty string).
    47  */
    48 new TestCase( SECTION,
    49 	      "(''.split(',')).length",
    50 	      0,
    51 	      (''.split(',')).length );
    53 test();

mercurial