Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.7_A6_T1.js
blob54c1647ee71093115e4c375aac52a5021add43da
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     The production QuantifierPrefix :: { DecimalDigits , }evaluates as follows:
7     i) Let i be the MV of DecimalDigits
8     ii) Return the two results i and \infty
9 es5id: 15.10.2.7_A6_T1
10 description: Execute /b{2,}c/.exec("aaabbbbcccddeeeefffff") and check results
11 ---*/
13 var __executed = /b{2,}c/.exec("aaabbbbcccddeeeefffff");
15 var __expected = ["bbbbc"];
16 __expected.index = 3;
17 __expected.input = "aaabbbbcccddeeeefffff";
19 assert.sameValue(
20   __executed.length,
21   __expected.length,
22   'The value of __executed.length is expected to equal the value of __expected.length'
25 assert.sameValue(
26   __executed.index,
27   __expected.index,
28   'The value of __executed.index is expected to equal the value of __expected.index'
31 assert.sameValue(
32   __executed.input,
33   __expected.input,
34   'The value of __executed.input is expected to equal the value of __expected.input'
37 for(var index=0; index<__expected.length; index++) {
38   assert.sameValue(
39     __executed[index],
40     __expected[index],
41     'The value of __executed[index] is expected to equal the value of __expected[index]'
42   );
45 reportCompare(0, 0);