Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.8_A3_T12.js
blobecd890165932fa32b20b30d62c83b6c8acd0b331
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     Parentheses of the form ( Disjunction ) serve both to group the components of the Disjunction pattern together and to save the result of the match.
7     The result can be used either in a backreference (\ followed by a nonzero decimal number),
8     referenced in a replace string,
9     or returned as part of an array from the regular expression matching function
10 es5id: 15.10.2.8_A3_T12
11 description: Execute /(a(b(c)))(d(e(f)))/.exec("xabcdefg") and check results
12 ---*/
14 var __executed = /(a(b(c)))(d(e(f)))/.exec("xabcdefg");
16 var __expected = ["abcdef","abc","bc","c","def","ef","f"];
17 __expected.index = 1;
18 __expected.input = "xabcdefg";
20 assert.sameValue(
21   __executed.length,
22   __expected.length,
23   'The value of __executed.length is expected to equal the value of __expected.length'
26 assert.sameValue(
27   __executed.index,
28   __expected.index,
29   'The value of __executed.index is expected to equal the value of __expected.index'
32 assert.sameValue(
33   __executed.input,
34   __expected.input,
35   'The value of __executed.input is expected to equal the value of __expected.input'
38 for(var index=0; index<__expected.length; index++) {
39   assert.sameValue(
40     __executed[index],
41     __expected[index],
42     'The value of __executed[index] is expected to equal the value of __expected[index]'
43   );
46 reportCompare(0, 0);