summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/S15.10.2.10_A2.1_T1.js
blob: 5ccba147194a46876d854780967c55d003214787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: "CharacterEscape :: c ControlLetter"
es5id: 15.10.2.10_A2.1_T1
description: "ControlLetter :: A - Z"
---*/

var result = true;
for (var alpha = 0x0041; alpha <= 0x005A; alpha++) {
  var str = String.fromCharCode(alpha % 32);
  var arr = (new RegExp("\\c" + String.fromCharCode(alpha))).exec(str);  
  if ((arr === null) || (arr[0] !== str)) {
    result = false;
  }
}

assert.sameValue(result, true, 'The value of result is expected to be true');

reportCompare(0, 0);