| OLD | NEW |
| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 'js1_5/Function/regress-338121-03': [FAIL_OK], | 272 'js1_5/Function/regress-338121-03': [FAIL_OK], |
| 273 | 273 |
| 274 # Expectes 'prototype' property of functions to be enumerable. | 274 # Expectes 'prototype' property of functions to be enumerable. |
| 275 'js1_5/Function/10.1.6-01': [FAIL_OK], | 275 'js1_5/Function/10.1.6-01': [FAIL_OK], |
| 276 | 276 |
| 277 #:=== RegExp:=== | 277 #:=== RegExp:=== |
| 278 # We don't match the syntax error message of Mozilla for invalid | 278 # We don't match the syntax error message of Mozilla for invalid |
| 279 # RegExp flags. | 279 # RegExp flags. |
| 280 'ecma_3/RegExp/15.10.4.1-6': [FAIL_OK], | 280 'ecma_3/RegExp/15.10.4.1-6': [FAIL_OK], |
| 281 | 281 |
| 282 # PCRE doesn't allow subpattern nesting deeper than 200, this tests | |
| 283 # depth 500. JSC detects the case, and return null from the match, | |
| 284 # and passes this test (the test doesn't check for a correct return | |
| 285 # value). | |
| 286 'ecma_3/RegExp/regress-119909': [PASS, FAIL_OK], | |
| 287 | |
| 288 | |
| 289 # Difference in the way capturing subpatterns work. In JS, when the | |
| 290 # 'minimum repeat count' is reached, the empty string must not match. | |
| 291 # In this case, we are similar but not identical to JSC. Hard to | |
| 292 # support the JS behavior with PCRE, so maybe emulate JSC? | |
| 293 'ecma_3/RegExp/regress-209919': [PASS, FAIL_OK], | |
| 294 'js1_5/extensions/regress-459606': [PASS, FAIL_OK], | |
| 295 | |
| 296 | |
| 297 # PCRE's match limit is reached. SpiderMonkey hangs on the first one, | 282 # PCRE's match limit is reached. SpiderMonkey hangs on the first one, |
| 298 # JSC returns true somehow. Maybe they up the match limit? There is | 283 # JSC returns true somehow. Maybe they up the match limit? There is |
| 299 # an open V8 bug 676063 about this. | 284 # an open V8 bug 676063 about this. |
| 300 # TODO(yangguo): Hangs on complex regexp. Please investigate if this gives | 285 # TODO(yangguo): Hangs on complex regexp. Please investigate if this gives |
| 301 # any useful coverage. | 286 # any useful coverage. |
| 302 'ecma_3/RegExp/regress-330684': [SKIP], | 287 'ecma_3/RegExp/regress-330684': [SKIP], |
| 303 | 288 |
| 304 | 289 |
| 305 # This test contains a regexp that runs exponentially long. Spidermonkey | 290 # This test contains a regexp that runs exponentially long. Spidermonkey |
| 306 # standalone will hang, though apparently inside Firefox it will trigger a | 291 # standalone will hang, though apparently inside Firefox it will trigger a |
| 307 # long-running-script timeout. JSCRE passes by hitting the matchLimit and | 292 # long-running-script timeout. JSCRE passes by hitting the matchLimit and |
| 308 # just pretending that an exhaustive search found no match. | 293 # just pretending that an exhaustive search found no match. |
| 309 # TODO(yangguo): Hangs on complex regexp. Please investigate if this gives | 294 # TODO(yangguo): Hangs on complex regexp. Please investigate if this gives |
| 310 # any useful coverage. | 295 # any useful coverage. |
| 311 'ecma_3/RegExp/regress-307456': [SKIP], | 296 'ecma_3/RegExp/regress-307456': [SKIP], |
| 312 | 297 |
| 313 | 298 |
| 314 # We do not detect overflow in bounds for back references and {} | 299 # We do not detect overflow in bounds for back references and {} |
| 315 # quantifiers. Might fix by parsing numbers differently? | 300 # quantifiers. Might fix by parsing numbers differently? |
| 316 'js1_5/Regress/regress-230216-2': [FAIL_OK], | 301 'js1_5/Regress/regress-230216-2': [FAIL_OK], |
| 317 | 302 |
| 318 | 303 |
| 319 # Regexp too long for PCRE. | 304 # BUG(v8:3767) |
| 320 'js1_5/Regress/regress-280769': [PASS, FAIL], | 305 'js1_5/Regress/regress-280769-2': [PASS, ['arch == arm64', SKIP]], |
| 321 'js1_5/Regress/regress-280769-1': [PASS, FAIL], | 306 |
| 322 'js1_5/Regress/regress-280769-2': [PASS, FAIL, TIMEOUT], | 307 # Regexps too big. |
| 323 'js1_5/Regress/regress-280769-4': [PASS, FAIL], | 308 'js1_5/Regress/regress-280769-1': [SKIP], |
| 324 'js1_5/Regress/regress-280769-5': [PASS, FAIL], | 309 'js1_5/Regress/regress-280769-5': [SKIP], |
| 325 | 310 |
| 326 | 311 |
| 327 # We do not support static RegExp.multiline - should we?. | 312 # We do not support static RegExp.multiline - should we?. |
| 328 'js1_2/regexp/RegExp_multiline': [FAIL_OK], | 313 'js1_2/regexp/RegExp_multiline': [FAIL_OK], |
| 329 'js1_2/regexp/RegExp_multiline_as_array': [FAIL_OK], | 314 'js1_2/regexp/RegExp_multiline_as_array': [FAIL_OK], |
| 330 'js1_2/regexp/beginLine': [FAIL_OK], | 315 'js1_2/regexp/beginLine': [FAIL_OK], |
| 331 'js1_2/regexp/endLine': [FAIL_OK], | 316 'js1_2/regexp/endLine': [FAIL_OK], |
| 332 | 317 |
| 333 # We no longer let calls to test and exec with no argument implicitly | 318 # We no longer let calls to test and exec with no argument implicitly |
| 334 # use the previous input. | 319 # use the previous input. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 362 'js1_5/Regress/regress-234389': [FAIL_OK], | 347 'js1_5/Regress/regress-234389': [FAIL_OK], |
| 363 | 348 |
| 364 | 349 |
| 365 # This may very well be a bogus test. I'm not sure yet. | 350 # This may very well be a bogus test. I'm not sure yet. |
| 366 'js1_5/Regress/regress-320119': [FAIL_OK], | 351 'js1_5/Regress/regress-320119': [FAIL_OK], |
| 367 | 352 |
| 368 | 353 |
| 369 # No support for toSource(). | 354 # No support for toSource(). |
| 370 'js1_5/Regress/regress-313967-01': [FAIL_OK], | 355 'js1_5/Regress/regress-313967-01': [FAIL_OK], |
| 371 'js1_5/Regress/regress-313967-02': [FAIL_OK], | 356 'js1_5/Regress/regress-313967-02': [FAIL_OK], |
| 357 'js1_5/extensions/regress-459606': [FAIL_OK], |
| 372 | 358 |
| 373 # This fails because we don't have stack space for Function.prototype.apply | 359 # This fails because we don't have stack space for Function.prototype.apply |
| 374 # with very large numbers of arguments. The test uses 2^24 arguments. | 360 # with very large numbers of arguments. The test uses 2^24 arguments. |
| 375 'js1_5/Array/regress-350256-03': [FAIL_OK], | 361 'js1_5/Array/regress-350256-03': [FAIL_OK], |
| 376 | 362 |
| 377 | 363 |
| 378 # Extra arguments not handled properly in String.prototype.match | 364 # Extra arguments not handled properly in String.prototype.match |
| 379 'js1_5/Regress/regress-179524': [FAIL_OK], | 365 'js1_5/Regress/regress-179524': [FAIL_OK], |
| 380 | 366 |
| 381 | 367 |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 # Unsupported list comprehensions: [ ... for ... ] and for each. | 551 # Unsupported list comprehensions: [ ... for ... ] and for each. |
| 566 'js1_5/Regress/regress-352009': [FAIL_OK], | 552 'js1_5/Regress/regress-352009': [FAIL_OK], |
| 567 'js1_5/Regress/regress-349648': [FAIL_OK], | 553 'js1_5/Regress/regress-349648': [FAIL_OK], |
| 568 | 554 |
| 569 | 555 |
| 570 # Expects top level arguments (passed on command line?) to be | 556 # Expects top level arguments (passed on command line?) to be |
| 571 # the empty string? | 557 # the empty string? |
| 572 'js1_5/Regress/regress-336100': [FAIL_OK], | 558 'js1_5/Regress/regress-336100': [FAIL_OK], |
| 573 | 559 |
| 574 | 560 |
| 575 # Regular expression test failures due to PCRE. We match JSC (ie, perl) | |
| 576 # behavior and not the ECMA spec. | |
| 577 'ecma_3/RegExp/perlstress-001': [PASS, FAIL_OK], | |
| 578 'ecma_3/RegExp/regress-334158': [PASS, FAIL], | |
| 579 | |
| 580 # This test fails due to http://code.google.com/p/v8/issues/detail?id=187 | 561 # This test fails due to http://code.google.com/p/v8/issues/detail?id=187 |
| 581 # Failure to clear captures when a lookahead is unwound. | 562 # Failure to clear captures when a lookahead is unwound. |
| 582 'ecma_3/RegExp/15.10.2-1': [PASS, FAIL_OK], | 563 'ecma_3/RegExp/15.10.2-1': [PASS, FAIL_OK], |
| 583 | 564 |
| 584 # This test requires a failure if we try to compile a function with more | 565 # This test requires a failure if we try to compile a function with more |
| 585 # than 65536 arguments. This seems to be a Mozilla restriction. | 566 # than 65536 arguments. This seems to be a Mozilla restriction. |
| 586 'js1_5/Regress/regress-290575': [PASS, FAIL_OK], | 567 'js1_5/Regress/regress-290575': [PASS, FAIL_OK], |
| 587 | 568 |
| 588 | 569 |
| 589 # Fails because of the way function declarations are | 570 # Fails because of the way function declarations are |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 'ecma_3/RegExp/regress-307456': [SKIP], | 912 'ecma_3/RegExp/regress-307456': [SKIP], |
| 932 'js1_5/Regress/regress-303213': [SKIP], | 913 'js1_5/Regress/regress-303213': [SKIP], |
| 933 'js1_5/extensions/regress-330569': [SKIP], | 914 'js1_5/extensions/regress-330569': [SKIP], |
| 934 'js1_5/extensions/regress-351448': [SKIP], | 915 'js1_5/extensions/regress-351448': [SKIP], |
| 935 'js1_5/extensions/regress-336410-1': [SKIP], | 916 'js1_5/extensions/regress-336410-1': [SKIP], |
| 936 | 917 |
| 937 #BUG(3152): Avoid C stack overflow. | 918 #BUG(3152): Avoid C stack overflow. |
| 938 'js1_5/extensions/regress-355497': [FAIL_OK, 'Flags: --sim-stack-size=512'], | 919 'js1_5/extensions/regress-355497': [FAIL_OK, 'Flags: --sim-stack-size=512'], |
| 939 }], # 'arch == arm64 and simulator_run == True' | 920 }], # 'arch == arm64 and simulator_run == True' |
| 940 ] | 921 ] |
| OLD | NEW |