From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../test262/built-ins/RegExp/S15.10.2.6_A4_T8.js | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 js/src/tests/test262/built-ins/RegExp/S15.10.2.6_A4_T8.js (limited to 'js/src/tests/test262/built-ins/RegExp/S15.10.2.6_A4_T8.js') diff --git a/js/src/tests/test262/built-ins/RegExp/S15.10.2.6_A4_T8.js b/js/src/tests/test262/built-ins/RegExp/S15.10.2.6_A4_T8.js new file mode 100644 index 0000000000..486eeac080 --- /dev/null +++ b/js/src/tests/test262/built-ins/RegExp/S15.10.2.6_A4_T8.js @@ -0,0 +1,46 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: | + The production Assertion :: \B evaluates by returning an internal + AssertionTester closure that takes a State argument x and performs the ... +es5id: 15.10.2.6_A4_T8 +description: > + Execute /\B\w{4}\B/.exec("devil arise\tforzzx\nevils") and check + results +---*/ + +var __executed = /\B\w{4}\B/.exec("devil arise\tforzzx\nevils"); + +var __expected = ["orzz"]; +__expected.index = 13; +__expected.input = "devil arise\tforzzx\nevils"; + +assert.sameValue( + __executed.length, + __expected.length, + 'The value of __executed.length is expected to equal the value of __expected.length' +); + +assert.sameValue( + __executed.index, + __expected.index, + 'The value of __executed.index is expected to equal the value of __expected.index' +); + +assert.sameValue( + __executed.input, + __expected.input, + 'The value of __executed.input is expected to equal the value of __expected.input' +); + +for(var index=0; index<__expected.length; index++) { + assert.sameValue( + __executed[index], + __expected[index], + 'The value of __executed[index] is expected to equal the value of __expected[index]' + ); +} + +reportCompare(0, 0); -- cgit v1.2.3