Index: test/preparser/preparser.status |
diff --git a/test/preparser/preparser.status b/test/preparser/preparser.status |
index 40c5caf7427b855e892317c3517d51df1a2bfa2a..e66251b3daf1fccdeb9379191c91c6c2dd69641b 100644 |
--- a/test/preparser/preparser.status |
+++ b/test/preparser/preparser.status |
@@ -25,14 +25,17 @@ |
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
-prefix preparser |
+[ |
+[ALWAYS, { |
+ # We don't parse RegExps at scanning time, so we can't fail on octal |
+ # escapes (we need to parse to distinguish octal escapes from valid |
+ # back-references). |
+ 'strict-octal-regexp': [FAIL], |
+}], # ALWAYS |
-# We don't parse RegExps at scanning time, so we can't fail on octal |
-# escapes (we need to parse to distinguish octal escapes from valid |
-# back-references). |
-strict-octal-regexp: FAIL |
- |
-[ $arch == android_arm || $arch == android_ia32 ] |
-# Remove this once the issue above is fixed. Android test runner does not |
-# handle "FAIL" test expectation correctly. |
-strict-octal-regexp: SKIP |
+['arch == android_arm or arch == android_ia32', { |
+ # Remove this once the issue above is fixed. Android test runner does not |
+ # handle "FAIL" test expectation correctly. |
+ 'strict-octal-regexp': [SKIP], |
+}], # 'arch == android_arm or arch == android_ia32' |
+] |