Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.9_A1_T2.js
blobcf1749de1b0f8d7abda915b9e965f4e55b5b28ff
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 info: |
6     An escape sequence of the form \ followed by a nonzero decimal number n
7     matches the result of the nth set of capturing parentheses (see
8     15.10.2.11)
9 es5id: 15.10.2.9_A1_T2
10 description: >
11     Execute
12     /([xu]\d{2}([A-H]{2})?)\1/.exec("x09x12x01x01u00FFu00FFx04x04x23")
13     and check results
14 ---*/
16 var __executed = /([xu]\d{2}([A-H]{2})?)\1/.exec("x09x12x01x01u00FFu00FFx04x04x23");
18 var __expected = ["x01x01", "x01", undefined];
19 __expected.index = 6;
20 __expected.input = "x09x12x01x01u00FFu00FFx04x04x23";
22 assert.sameValue(
23   __executed.length,
24   __expected.length,
25   'The value of __executed.length is expected to equal the value of __expected.length'
28 assert.sameValue(
29   __executed.index,
30   __expected.index,
31   'The value of __executed.index is expected to equal the value of __expected.index'
34 assert.sameValue(
35   __executed.input,
36   __expected.input,
37   'The value of __executed.input is expected to equal the value of __expected.input'
40 for(var index=0; index<__expected.length; index++) {
41   assert.sameValue(
42     __executed[index],
43     __expected[index],
44     'The value of __executed[index] is expected to equal the value of __expected[index]'
45   );
48 reportCompare(0, 0);