Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.7_A2_T4.js
blobe11162cc6ce49a012216c09e137bdc6e230d1fd8
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     i) The production QuantifierPrefix :: { DecimalDigits } evaluates...
7     ii) The production QuantifierPrefix :: ? evaluates by returning the two results 0 and 1
8 es5id: 15.10.2.7_A2_T4
9 description: Execute /b{8}c/.test("aaabbbbcccddeeeefffff") and check results
10 ---*/
12 var __executed = /b{8}/.test("aaabbbbcccddeeeefffff");
14 assert(!__executed, 'The value of !__executed is expected to be true');
16 reportCompare(0, 0);