| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 | 382 |
| 383 [ $runtime == ff ] | 383 [ $runtime == ff ] |
| 384 naming_test: Fail | 384 naming_test: Fail |
| 385 stack_overflow_test: Fail | 385 stack_overflow_test: Fail |
| 386 execute_finally7_test: Skip | 386 execute_finally7_test: Skip |
| 387 static_final_field2_negative_test: Skip | 387 static_final_field2_negative_test: Skip |
| 388 | 388 |
| 389 [ $runtime == ff && $system == windows ] | 389 [ $runtime == ff && $system == windows ] |
| 390 ct_const2_test: Pass,Fail # Issue 2101 | 390 ct_const2_test: Pass,Fail # Issue 2101 |
| 391 | 391 |
| 392 [ $runtime == ie ] | 392 [ $compiler == frog && $runtime == ie ] |
| 393 stack_overflow_test: Fail | 393 stack_overflow_test: Fail |
| 394 object_dynamic_method_test: Fail | 394 object_dynamic_method_test: Fail |
| 395 number_syntax_test: Fail | 395 number_syntax_test: Fail |
| 396 | 396 |
| 397 [ $runtime == ie && ($system == linux || $system == mac) ] | 397 [ $runtime == ie && ($system == linux || $system == mac) ] |
| 398 *: Skip | 398 *: Skip |
| 399 | 399 |
| 400 [ $runtime == safari && ($system == linux || $system == windows) ] | 400 [ $runtime == safari && ($system == linux || $system == windows) ] |
| 401 *: Skip | 401 *: Skip |
| 402 | 402 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. | 452 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. |
| 453 | 453 |
| 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 | |
| 463 [ $compiler == dart2js && $runtime == ff ] | |
| 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 |