Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.7_A1_T10.js
blob10983028b7c88966ca59b9b46c17265fd0ad2b7a
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 , DecimalDigits }
7     evaluates as ...
8 es5id: 15.10.2.7_A1_T10
9 description: Execute /b{0,93}c/.exec("aaabbbbcccddeeeefffff") and check results
10 ---*/
12 var __executed = /b{0,93}c/.exec("aaabbbbcccddeeeefffff");
14 var __expected = ["bbbbc"];
15 __expected.index = 3;
16 __expected.input = "aaabbbbcccddeeeefffff";
18 assert.sameValue(
19   __executed.length,
20   __expected.length,
21   'The value of __executed.length is expected to equal the value of __expected.length'
24 assert.sameValue(
25   __executed.index,
26   __expected.index,
27   'The value of __executed.index is expected to equal the value of __expected.index'
30 assert.sameValue(
31   __executed.input,
32   __expected.input,
33   'The value of __executed.input is expected to equal the value of __expected.input'
36 for(var index=0; index<__expected.length; index++) {
37   assert.sameValue(
38     __executed[index],
39     __expected[index],
40     'The value of __executed[index] is expected to equal the value of __expected[index]'
41   );
44 reportCompare(0, 0);