Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 # In order to maintain maximum test coverage for all builds, | 8 # In order to maintain maximum test coverage for all builds, |
| 9 # please use the following procedure to mark a test | 9 # please use the following procedure to mark a test |
| 10 # failed on architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 274 # TODO: These need to be retriaged. | 274 # TODO: These need to be retriaged. |
| 275 RichardsTest: Fail | 275 RichardsTest: Fail |
| 276 TypedMessageTest: Fail # Bug 5246195 | 276 TypedMessageTest: Fail # Bug 5246195 |
| 277 StringEscape1NegativeTest: Skip | 277 StringEscape1NegativeTest: Skip |
| 278 | 278 |
| 279 | 279 |
| 280 [ $component == frogsh ] | 280 [ $component == frogsh ] |
| 281 IntrinsifiedMethodsTest: Fail # Issue 1470 | 281 IntrinsifiedMethodsTest: Fail # Issue 1470 |
| 282 ArithmeticTest: Fail # Issue 1470 | 282 ArithmeticTest: Fail # Issue 1470 |
| 283 | 283 |
| 284 [ $component == frog || $component == frogium ] | 284 [ $component == frog || $component == frogium || $component == webdriver ] |
|
Emily Fortuna
2012/02/10 21:51:46
We didn't catch this before, because ToStringAsFix
| |
| 285 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation | 285 ToStringAsFixedTest: Fail # fails due to rounding in constant propagation |
| 286 | 286 |
| 287 # This set of four test components (frog, frogsh, frogium, and webdriver) all | 287 # This set of four test components (frog, frogsh, frogium, and webdriver) all |
| 288 # consume frog output, so if frog is generating the incorrect code, chances are | 288 # consume frog output, so if frog is generating the incorrect code, chances are |
| 289 # it will fail on all of these components. | 289 # it will fail on all of these components. |
| 290 # | 290 # |
| 291 # Further explanation: | 291 # Further explanation: |
| 292 # frog: frog compiler, run using the VM | 292 # frog: frog compiler, run using the VM |
| 293 # frogsh: self-hosted frog compiler | 293 # frogsh: self-hosted frog compiler |
| 294 # frogium: Dart code compiled with frog VM running under DumpRenderTree | 294 # frogium: Dart code compiled with frog VM running under DumpRenderTree |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 470 [ $component == webdriver && $browser == safari ] | 470 [ $component == webdriver && $browser == safari ] |
| 471 BlockScopeTest: Fail | 471 BlockScopeTest: Fail |
| 472 ClosureBreak1Test: Fail | 472 ClosureBreak1Test: Fail |
| 473 ClosureBreakTest: Fail | 473 ClosureBreakTest: Fail |
| 474 ExecuteFinally7Test: Fail | 474 ExecuteFinally7Test: Fail |
| 475 FunctionLiteralsTest: Fail | 475 FunctionLiteralsTest: Fail |
| 476 ImplicitClosure1Test: Fail | 476 ImplicitClosure1Test: Fail |
| 477 ImplicitClosureTest: Fail | 477 ImplicitClosureTest: Fail |
| 478 MethodBindingTest: Fail | 478 MethodBindingTest: Fail |
| 479 Prefix15Test: Fail | 479 Prefix15Test: Fail |
| 480 ToStringAsFixedTest: Pass,Fail # Passes in 32-bit Safari, but fails in 64-bit Is sue #1220 | |
| 481 GCTest: Fail | 480 GCTest: Fail |
| 482 | 481 |
| 483 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. | 482 # TODO(jmesserly): now that we have a bot, we need to set up Opera testing. |
| 484 [ $component == webdriver && $browser == opera ] | 483 [ $component == webdriver && $browser == opera ] |
| 485 *: Skip | 484 *: Skip |
| 486 | 485 |
| 487 [ $component == webdriver && $browser == ff ] | 486 [ $component == webdriver && $browser == ff ] |
| 488 NamingTest: Fail | 487 NamingTest: Fail |
| 489 StackOverflowTest: Fail | 488 StackOverflowTest: Fail |
| 490 ToStringAsFixedTest: Fail | |
| 491 ExecuteFinally7Test: Skip | 489 ExecuteFinally7Test: Skip |
| 492 StaticFinalField2NegativeTest: Skip | 490 StaticFinalField2NegativeTest: Skip |
| 493 | 491 |
| 494 [ $component == webdriver && $browser == ie ] | 492 [ $component == webdriver && $browser == ie ] |
| 495 ToStringAsFixedTest: Fail | |
| 496 StackOverflowTest: Fail | 493 StackOverflowTest: Fail |
| 497 ObjectDynamicMethodTest: Fail | 494 ObjectDynamicMethodTest: Fail |
| 498 NumberSyntaxTest: Fail | 495 NumberSyntaxTest: Fail |
| 499 | 496 |
| 500 [ $component == webdriver && $browser == ie && ($system == linux || $system == m ac) ] | 497 [ $component == webdriver && $browser == ie && ($system == linux || $system == m ac) ] |
| 501 *: Skip | 498 *: Skip |
| 502 | 499 |
| 503 [ $component == webdriver && $browser == safari && ($system == linux || $system == windows) ] | 500 [ $component == webdriver && $browser == safari && ($system == linux || $system == windows) ] |
| 504 *: Skip | 501 *: Skip |
| 505 | 502 |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 533 [ $component == frog && $mode == debug ] | 530 [ $component == frog && $mode == debug ] |
| 534 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 531 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 535 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 532 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 536 | 533 |
| 537 [ $arch == simarm ] | 534 [ $arch == simarm ] |
| 538 *: Skip | 535 *: Skip |
| 539 | 536 |
| 540 [ $arch == arm ] | 537 [ $arch == arm ] |
| 541 *: Skip | 538 *: Skip |
| 542 | 539 |
| OLD | NEW |