1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_5/RegExp/regexp-space-character-class.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,47 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 +* License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 +* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +var gTestfile = 'regexp-space-character-class.js'; 1.10 +//----------------------------------------------------------------------------- 1.11 +var BUGNUMBER = 514808; 1.12 +var summary = 'Correct space character class in regexes'; 1.13 +var actual = ''; 1.14 +var expect = ''; 1.15 + 1.16 + 1.17 +//----------------------------------------------------------------------------- 1.18 +test(); 1.19 +//----------------------------------------------------------------------------- 1.20 + 1.21 +function test() 1.22 +{ 1.23 +enterFunc ('test'); 1.24 +printBugNumber(BUGNUMBER); 1.25 +printStatus (summary); 1.26 + 1.27 +var spaces = [ "\u0009", "\u000b", "\u000c", "\u0020", "\u00a0", "\u1680", 1.28 +"\u180e", "\u2000", "\u2001", "\u2002", "\u2003", "\u2004", 1.29 +"\u2005", "\u2006", "\u2007", "\u2008", "\u2009", "\u200a", 1.30 +"\u202f", "\u205f", "\u3000", "\ufeff" ]; 1.31 +var line_terminators = [ "\u2028", "\u2029", "\u000a", "\u000d" ]; 1.32 +var space_chars = [].concat(spaces, line_terminators); 1.33 + 1.34 +var non_space_chars = [ "\u200b", "\u200c", "\u200d" ]; 1.35 + 1.36 +var chars = [].concat(space_chars, non_space_chars); 1.37 +var is_space = [].concat(space_chars.map(function(ch) { return true; }), 1.38 +non_space_chars.map(function(ch) { return false; })); 1.39 +var expect = is_space.join(','); 1.40 + 1.41 +var actual = chars.map(function(ch) { return /\s/.test(ch); }).join(','); 1.42 +reportCompare(expect, actual, summary); 1.43 + 1.44 +jit(true); 1.45 +var actual = chars.map(function(ch) { return /\s/.test(ch); }).join(','); 1.46 +reportCompare(expect, actual, summary); 1.47 +jit(false); 1.48 + 1.49 +exitFunc ('test'); 1.50 +}