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

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

Issue 18842: Experimental: periodic merge of the bleeding_edge branch to the... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 11 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/try_catch_scopes.js ('k') | tools/v8.xcodeproj/project.pbxproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 # depth 500. JSC detects the case, and return null from the match, 233 # depth 500. JSC detects the case, and return null from the match,
234 # and passes this test (the test doesn't check for a correct return 234 # and passes this test (the test doesn't check for a correct return
235 # value). 235 # value).
236 ecma_3/RegExp/regress-119909: PASS || FAIL_OK 236 ecma_3/RegExp/regress-119909: PASS || FAIL_OK
237 237
238 238
239 # Difference in the way capturing subpatterns work. In JS, when the 239 # Difference in the way capturing subpatterns work. In JS, when the
240 # 'minimum repeat count' is reached, the empty string must not match. 240 # 'minimum repeat count' is reached, the empty string must not match.
241 # In this case, we are similar but not identical to JSC. Hard to 241 # In this case, we are similar but not identical to JSC. Hard to
242 # support the JS behavior with PCRE, so maybe emulate JSC? 242 # support the JS behavior with PCRE, so maybe emulate JSC?
243 # 243 ecma_3/RegExp/regress-209919: PASS || FAIL_OK
244 # Note: We do not support toSource currently so we cannot run this 244 js1_5/extensions/regress-459606: PASS || FAIL_OK
245 # test. We should make an isolated test case for the regexp issue.
246 ecma_3/RegExp/regress-209919: FAIL_OK
247 js1_5/extensions/regress-459606: FAIL_OK
248 245
249 246
250 # PCRE's match limit is reached. SpiderMonkey hangs on the first one, 247 # PCRE's match limit is reached. SpiderMonkey hangs on the first one,
251 # JSC returns true somehow. Maybe they up the match limit? There is 248 # JSC returns true somehow. Maybe they up the match limit? There is
252 # an open V8 bug 676063 about this. 249 # an open V8 bug 676063 about this.
253 ecma_3/RegExp/regress-330684: FAIL_OK 250 ecma_3/RegExp/regress-330684: FAIL_OK
254 251
255 252
256 # This test contains a regexp that runs exponentially long. Spidermonkey 253 # This test contains a regexp that runs exponentially long. Spidermonkey
257 # standalone will hang, though apparently inside Firefox it will trigger a 254 # standalone will hang, though apparently inside Firefox it will trigger a
258 # long-running-script timeout. JSCRE passes by hitting the matchLimit and 255 # long-running-script timeout. JSCRE passes by hitting the matchLimit and
259 # just pretending that an exhaustive search found no match. 256 # just pretending that an exhaustive search found no match.
260 ecma_3/RegExp/regress-307456: PASS || FAIL_OK 257 ecma_3/RegExp/regress-307456: PASS || FAIL_OK
261 258
262 259
263 # We do not detect overflow in bounds for back references and {} 260 # We do not detect overflow in bounds for back references and {}
264 # quantifiers. Might fix by parsing numbers differently? 261 # quantifiers. Might fix by parsing numbers differently?
265 js1_5/Regress/regress-230216-2: FAIL_OK 262 js1_5/Regress/regress-230216-2: FAIL_OK
266 263
267 264
268 # According to ECMA-262, \b is a 'word' boundary, where words are only
269 # ASCII characters. PCRE supports non-ASCII word characters.
270 js1_5/Regress/regress-247179: FAIL_OK
271
272
273 # Regexp too long for PCRE. 265 # Regexp too long for PCRE.
274 js1_5/Regress/regress-280769: PASS || FAIL 266 js1_5/Regress/regress-280769: PASS || FAIL
275 js1_5/Regress/regress-280769-1: PASS || FAIL 267 js1_5/Regress/regress-280769-1: PASS || FAIL
276 js1_5/Regress/regress-280769-2: PASS || FAIL 268 js1_5/Regress/regress-280769-2: PASS || FAIL
277 js1_5/Regress/regress-280769-4: PASS || FAIL 269 js1_5/Regress/regress-280769-4: PASS || FAIL
278 js1_5/Regress/regress-280769-5: PASS || FAIL 270 js1_5/Regress/regress-280769-5: PASS || FAIL
279 271
280 272
281 # We do not support static RegExp.multiline - should we?. 273 # We do not support static RegExp.multiline - should we?.
282 js1_2/regexp/RegExp_multiline: FAIL_OK 274 js1_2/regexp/RegExp_multiline: FAIL_OK
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 456
465 # We do not strip unicode format control characters. This is really 457 # We do not strip unicode format control characters. This is really
466 # required for working with non-latin character sets. We match JSC 458 # required for working with non-latin character sets. We match JSC
467 # and IE here. Firefox matches the spec (section 7.1). 459 # and IE here. Firefox matches the spec (section 7.1).
468 ecma_3/Unicode/uc-001: FAIL_OK 460 ecma_3/Unicode/uc-001: FAIL_OK
469 461
470 462
471 # A non-breaking space doesn't match \s in a regular expression. This behaviour 463 # A non-breaking space doesn't match \s in a regular expression. This behaviour
472 # matches JSC. All the VMs have different behaviours in which characters match 464 # matches JSC. All the VMs have different behaviours in which characters match
473 # \s so we do the same as JSC until they change. 465 # \s so we do the same as JSC until they change.
474 ecma_3/Unicode/uc-002: FAIL_OK 466 ecma_3/Unicode/uc-002: PASS || FAIL_OK
475 467
476 468
477 # String.prototype.split on empty strings always returns an array 469 # String.prototype.split on empty strings always returns an array
478 # with one element (as specified in ECMA-262). 470 # with one element (as specified in ECMA-262).
479 js1_2/Array/array_split_1: FAIL_OK 471 js1_2/Array/array_split_1: FAIL_OK
480 472
481 473
482 # The concat() method is defined in Array.prototype; not Array. 474 # The concat() method is defined in Array.prototype; not Array.
483 js1_5/Array/regress-313153: FAIL_OK 475 js1_5/Array/regress-313153: FAIL_OK
484 476
(...skipping 29 matching lines...) Expand all
514 js1_5/Regress/regress-349648: FAIL_OK 506 js1_5/Regress/regress-349648: FAIL_OK
515 507
516 508
517 # Expects top level arguments (passed on command line?) to be 509 # Expects top level arguments (passed on command line?) to be
518 # the empty string? 510 # the empty string?
519 js1_5/Regress/regress-336100: FAIL_OK 511 js1_5/Regress/regress-336100: FAIL_OK
520 512
521 513
522 # Regular expression test failures due to PCRE. We match JSC (ie, perl) 514 # Regular expression test failures due to PCRE. We match JSC (ie, perl)
523 # behavior and not the ECMA spec. 515 # behavior and not the ECMA spec.
524 ecma_3/RegExp/15.10.2-1: FAIL_OK 516 ecma_3/RegExp/perlstress-001: PASS || FAIL_OK
525 ecma_3/RegExp/perlstress-001: FAIL_OK
526 ecma_3/RegExp/regress-334158: PASS || FAIL 517 ecma_3/RegExp/regress-334158: PASS || FAIL
527 518
519 # This test fails due to http://code.google.com/p/v8/issues/detail?id=187
520 # Failure to clear captures when a lookahead is unwound.
521 ecma_3/RegExp/15.10.2-1: PASS || FAIL_OK
528 522
529 # This test requires a failure if we try to compile a function with more 523 # This test requires a failure if we try to compile a function with more
530 # than 65536 arguments. This seems to be a Mozilla restriction. 524 # than 65536 arguments. This seems to be a Mozilla restriction.
531 js1_5/Regress/regress-290575: FAIL_OK 525 js1_5/Regress/regress-290575: FAIL_OK
532 526
533 527
534 # Fails because of the way function declarations are 528 # Fails because of the way function declarations are
535 # handled in V8/JSC. V8 follows IE behavior and introduce 529 # handled in V8/JSC. V8 follows IE behavior and introduce
536 # all nested function declarations when entering the 530 # all nested function declarations when entering the
537 # surrounding function, whereas Spidermonkey declares 531 # surrounding function, whereas Spidermonkey declares
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 ecma/Date/15.9.5.8: SKIP 812 ecma/Date/15.9.5.8: SKIP
819 ecma/Date/15.9.5.9: SKIP 813 ecma/Date/15.9.5.9: SKIP
820 ecma/Date/15.9.5.10-2: SKIP 814 ecma/Date/15.9.5.10-2: SKIP
821 ecma/Date/15.9.5.11-2: SKIP 815 ecma/Date/15.9.5.11-2: SKIP
822 ecma/Expressions/11.7.2: SKIP 816 ecma/Expressions/11.7.2: SKIP
823 ecma/Expressions/11.10-2: SKIP 817 ecma/Expressions/11.10-2: SKIP
824 ecma/Expressions/11.7.3: SKIP 818 ecma/Expressions/11.7.3: SKIP
825 ecma/Expressions/11.10-3: SKIP 819 ecma/Expressions/11.10-3: SKIP
826 ecma/Expressions/11.7.1: SKIP 820 ecma/Expressions/11.7.1: SKIP
827 ecma_3/RegExp/regress-209067: SKIP 821 ecma_3/RegExp/regress-209067: SKIP
OLDNEW
« no previous file with comments | « test/mjsunit/try_catch_scopes.js ('k') | tools/v8.xcodeproj/project.pbxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698