Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: test/test262/test262.status

Issue 2577653002: [regexp] Let RegExp.prototype.compile return this (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mjsunit/regress/regress-585775.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 # https://bugs.chromium.org/p/v8/issues/detail?id=5135 353 # https://bugs.chromium.org/p/v8/issues/detail?id=5135
354 'annexB/language/eval-code/direct/func-block-decl-eval-func-block-scoping': [F AIL], 354 'annexB/language/eval-code/direct/func-block-decl-eval-func-block-scoping': [F AIL],
355 'annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-block-sco ping': [FAIL], 355 'annexB/language/eval-code/direct/func-if-decl-else-decl-a-eval-func-block-sco ping': [FAIL],
356 'annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-block-sco ping': [FAIL], 356 'annexB/language/eval-code/direct/func-if-decl-else-decl-b-eval-func-block-sco ping': [FAIL],
357 'annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-block-scopi ng': [FAIL], 357 'annexB/language/eval-code/direct/func-if-decl-else-stmt-eval-func-block-scopi ng': [FAIL],
358 'annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-block-scoping ': [FAIL], 358 'annexB/language/eval-code/direct/func-if-decl-no-else-eval-func-block-scoping ': [FAIL],
359 'annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-block-scopi ng': [FAIL], 359 'annexB/language/eval-code/direct/func-if-stmt-else-decl-eval-func-block-scopi ng': [FAIL],
360 'annexB/language/eval-code/direct/func-switch-case-eval-func-block-scoping': [ FAIL], 360 'annexB/language/eval-code/direct/func-switch-case-eval-func-block-scoping': [ FAIL],
361 'annexB/language/eval-code/direct/func-switch-dflt-eval-func-block-scoping': [ FAIL], 361 'annexB/language/eval-code/direct/func-switch-dflt-eval-func-block-scoping': [ FAIL],
362 362
363 # https://bugs.chromium.org/p/v8/issues/detail?id=5137
364 'annexB/built-ins/RegExp/prototype/compile/flags-undefined': [FAIL],
365 'annexB/built-ins/RegExp/prototype/compile/pattern-regexp-distinct': [FAIL],
366 'annexB/built-ins/RegExp/prototype/compile/pattern-regexp-same': [FAIL],
367 'annexB/built-ins/RegExp/prototype/compile/pattern-undefined': [FAIL],
368
369 # https://bugs.chromium.org/p/v8/issues/detail?id=5139 363 # https://bugs.chromium.org/p/v8/issues/detail?id=5139
370 'annexB/built-ins/Date/prototype/setYear/time-clip': [FAIL], 364 'annexB/built-ins/Date/prototype/setYear/time-clip': [FAIL],
371 'annexB/built-ins/Date/prototype/setYear/year-number-relative': [FAIL], 365 'annexB/built-ins/Date/prototype/setYear/year-number-relative': [FAIL],
372 366
373 # https://bugs.chromium.org/p/v8/issues/detail?id=5155 367 # https://bugs.chromium.org/p/v8/issues/detail?id=5155
374 'language/white-space/mongolian-vowel-separator': [FAIL], 368 'language/white-space/mongolian-vowel-separator': [FAIL],
375 'language/white-space/mongolian-vowel-separator-eval': [FAIL], 369 'language/white-space/mongolian-vowel-separator-eval': [FAIL],
376 'built-ins/RegExp/S15.10.2.12_A2_T1': [FAIL], 370 'built-ins/RegExp/S15.10.2.12_A2_T1': [FAIL],
377 'built-ins/RegExp/S15.10.2.12_A1_T1': [FAIL], 371 'built-ins/RegExp/S15.10.2.12_A1_T1': [FAIL],
378 'built-ins/parseFloat/S15.1.2.3_A2_T10_U180E': [FAIL], 372 'built-ins/parseFloat/S15.1.2.3_A2_T10_U180E': [FAIL],
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 593
600 ['variant == asm_wasm', { 594 ['variant == asm_wasm', {
601 '*': [SKIP], 595 '*': [SKIP],
602 }], # variant == asm_wasm 596 }], # variant == asm_wasm
603 597
604 ['variant == wasm_traps', { 598 ['variant == wasm_traps', {
605 '*': [SKIP], 599 '*': [SKIP],
606 }], # variant == wasm_traps 600 }], # variant == wasm_traps
607 601
608 ] 602 ]
OLDNEW
« no previous file with comments | « test/mjsunit/regress/regress-585775.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698