| 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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 | 378 |
| 379 StringEscape4NegativeTest: Fail # Issue 1352 | 379 StringEscape4NegativeTest: Fail # Issue 1352 |
| 380 | 380 |
| 381 [ $component == frogium || $component == webdriver || $component == dartium ] | 381 [ $component == frogium || $component == webdriver || $component == dartium ] |
| 382 ResourceTest: Fail # browser tests are #sourcing the test, causing an error tha
t directives cannot be used in #sourced files, see issue 1807 | 382 ResourceTest: Fail # browser tests are #sourcing the test, causing an error tha
t directives cannot be used in #sourced files, see issue 1807 |
| 383 | 383 |
| 384 [ $component == webdriver && $browser == chrome ] | 384 [ $component == webdriver && $browser == chrome ] |
| 385 StringEscape1NegativeTest: Skip | 385 StringEscape1NegativeTest: Skip |
| 386 | 386 |
| 387 [ $component == webdriver && ($browser == ff || $browser == safari || $browser =
= ie) ] | 387 [ $component == webdriver && ($browser == ff || $browser == safari || $browser =
= ie) ] |
| 388 Closure3Test: Fail |
| 388 MethodInvocationTest: Fail | 389 MethodInvocationTest: Fail |
| 389 Private3Test: Fail | 390 Private3Test: Fail |
| 390 StackTraceTest: Fail | 391 StackTraceTest: Fail |
| 391 StringInterpolateNPETest: Fail | 392 StringInterpolateNPETest: Fail |
| 392 | 393 |
| 393 # For these tests Frog generates invalid JS. Chrome throws a SyntaxError, but | 394 # For these tests Frog generates invalid JS. Chrome throws a SyntaxError, but |
| 394 # other browsers don't, so they eventually timeout. See issue 1515. | 395 # other browsers don't, so they eventually timeout. See issue 1515. |
| 395 # In any case, we shouldn't be relying on SyntaxError. | 396 # In any case, we shouldn't be relying on SyntaxError. |
| 396 Label2NegativeTest: Skip | 397 Label2NegativeTest: Skip |
| 397 Label3NegativeTest: Skip | 398 Label3NegativeTest: Skip |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 [ $component == frog && $mode == debug ] | 455 [ $component == frog && $mode == debug ] |
| 455 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. | 456 ConstructorRedirect1NegativeTest: Skip # Undiagnosed infinite loop. |
| 456 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. | 457 ConstructorRedirect2NegativeTest: Skip # Undiagnosed infinite loop. |
| 457 | 458 |
| 458 [ $arch == simarm ] | 459 [ $arch == simarm ] |
| 459 *: Skip | 460 *: Skip |
| 460 | 461 |
| 461 [ $arch == arm ] | 462 [ $arch == arm ] |
| 462 *: Skip | 463 *: Skip |
| 463 | 464 |
| OLD | NEW |