| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 string_escape4_negative_test: Fail # Issue 1352 | 349 string_escape4_negative_test: Fail # Issue 1352 |
| 350 | 350 |
| 351 issue4515170_test: Fail | 351 issue4515170_test: Fail |
| 352 | 352 |
| 353 [ $compiler == frog && $runtime == d8 ] | 353 [ $compiler == frog && $runtime == d8 ] |
| 354 string_escape1_negative_test: Fail # TODO(sra): investigate | 354 string_escape1_negative_test: Fail # TODO(sra): investigate |
| 355 | 355 |
| 356 [ $runtime == chrome ] | 356 [ $runtime == chrome ] |
| 357 string_escape1_negative_test: Skip | 357 string_escape1_negative_test: Skip |
| 358 | 358 |
| 359 [ $runtime == ff || $runtime == safari || $runtime == ie) ] | 359 [ $compiler == frog && ($runtime == ff || $runtime == safari || $runtime == ie)
] |
| 360 closure3_test: Fail | 360 closure3_test: Fail |
| 361 method_invocation_test: Fail | 361 method_invocation_test: Fail |
| 362 private3_test: Fail | 362 private3_test: Fail |
| 363 stack_trace_test: Fail | 363 stack_trace_test: Fail |
| 364 string_interpolate_npe_test: Fail | 364 string_interpolate_npe_test: Fail |
| 365 | 365 |
| 366 # For these tests Frog generates invalid JS. Chrome throws a SyntaxError, but | 366 # For these tests Frog generates invalid JS. Chrome throws a SyntaxError, but |
| 367 # other browsers don't, so they eventually timeout. See issue 1515. | 367 # other browsers don't, so they eventually timeout. See issue 1515. |
| 368 # In any case, we shouldn't be relying on SyntaxError. | 368 # In any case, we shouldn't be relying on SyntaxError. |
| 369 label2_negative_test: Skip | 369 label2_negative_test: Skip |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 [ $compiler == frog && $runtime == none ] | 454 [ $compiler == frog && $runtime == none ] |
| 455 *: Skip | 455 *: Skip |
| 456 | 456 |
| 457 [ $arch == simarm ] | 457 [ $arch == simarm ] |
| 458 *: Skip | 458 *: Skip |
| 459 | 459 |
| 460 [ $arch == arm ] | 460 [ $arch == arm ] |
| 461 *: Skip | 461 *: Skip |
| 462 | 462 |
| 463 [ $compiler == dart2js && $runtime == ff ] | 463 [ $compiler == dart2js && $runtime == ff ] |
| 464 *: Skip # Issue 2615 | 464 call_through_getter_test: Fail # Expected: ObjectNotClosureException got: Instan
ce of 'TypeError' |
| 465 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 466 double_to_string_as_fixed_test: Fail |
| 467 double_to_string_as_exponential_test: Fail |
| 468 local_function3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 469 savannah_test: Fail # Uncaught error: Instance of 'TypeError' |
| 470 implied_interface_test: Fail # Uncaught error: Instance of 'TypeError' |
| 471 bad_named_parameters_test: Fail # Uncaught error: Instance of 'TypeError' |
| 472 bad_named_parameters2_test: Fail # Uncaught error: Instance of 'TypeError' |
| 473 arithmetic2_test: Fail # Uncaught error: Instance of 'TypeError' |
| 474 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 475 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 476 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 477 private3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 478 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 479 label_test: Skip # timeout |
| OLD | NEW |