aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js')
-rw-r--r--test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js17
1 files changed, 7 insertions, 10 deletions
diff --git a/test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js b/test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js
index cdc5ba6cd..3019a6c02 100644
--- a/test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js
+++ b/test/suite/ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js
@@ -1,14 +1,13 @@
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
-/**
- * The production QuantifierPrefix :: { DecimalDigits , }evaluates as follows:
- * i) Let i be the MV of DecimalDigits
- * ii) Return the two results i and \infty
- *
- * @path ch15/15.10/15.10.2/15.10.2.7/S15.10.2.7_A6_T6.js
- * @description Execute /x{1,2}x{1,}/.exec("xxxxxxx") and check results
- */
+/*---
+info: >
+ The production QuantifierPrefix :: { DecimalDigits , }evaluates as follows:
+ i) Let i be the MV of DecimalDigits
+ ii) Return the two results i and \infty
+description: Execute /x{1,2}x{1,}/.exec("xxxxxxx") and check results
+---*/
__executed = /x{1,2}x{1,}/.exec("xxxxxxx");
@@ -37,5 +36,3 @@ for(var index=0; index<__expected.length; index++) {
$ERROR('#4: __executed = /x{1,2}x{1,}/.exec("xxxxxxx"); __executed[' + index + '] === ' + __expected[index] + '. Actual: ' + __executed[index]);
}
}
-
-