| 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 [ $compiler == dart2js || $compiler == dart2dart ] | 5 [ $compiler == dart2js || $compiler == dart2dart ] |
| 6 # VM specific tests that should not be run by dart2js. | 6 # VM specific tests that should not be run by dart2js. |
| 7 *vm_test: Skip | 7 *vm_test: Skip |
| 8 *vm_negative_test: Skip | 8 *vm_negative_test: Skip |
| 9 | 9 |
| 10 [ $compiler == dart2js && $checked ] | 10 [ $compiler == dart2js && $checked ] |
| (...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 | 309 |
| 310 bit_operations_test: Fail, OK # Tests bit operations outside the 32 bit range. | 310 bit_operations_test: Fail, OK # Tests bit operations outside the 32 bit range. |
| 311 # The following test will start to fail again once dart2js implements the | 311 # The following test will start to fail again once dart2js implements the |
| 312 # runtime semantics for numbers. | 312 # runtime semantics for numbers. |
| 313 # Should be: Fail, OK # Expects negative results of bit-operations. | 313 # Should be: Fail, OK # Expects negative results of bit-operations. |
| 314 optimization_test: Fail, OK # Expects negative results of bit-operations. | 314 optimization_test: Fail, OK # Expects negative results of bit-operations. |
| 315 | 315 |
| 316 expect_test: Fail, OK # JavaScript canonicalizes all strings. This test assumes
that string-concatenation returns a new string. | 316 expect_test: Fail, OK # JavaScript canonicalizes all strings. This test assumes
that string-concatenation returns a new string. |
| 317 reg_exp3_test: Fail, OK # Expects exception from const constructor. | 317 reg_exp3_test: Fail, OK # Expects exception from const constructor. |
| 318 | 318 |
| 319 # Partially implemented redirecting constructors makes this throw instead |
| 320 # of failing. |
| 321 const_factory_negative_test: Crash, Fail |
| 319 | 322 |
| 320 [ $compiler == dart2js && $mode == release ] | 323 [ $compiler == dart2js && $mode == release ] |
| 321 assign_top_method_negative_test: Crash | 324 assign_top_method_negative_test: Crash |
| 322 | 325 |
| 323 | 326 |
| 324 [ $compiler == dart2js && $runtime == none ] | 327 [ $compiler == dart2js && $runtime == none ] |
| 325 *: Fail, Pass # TODO(ahe): Triage these tests. | 328 *: Fail, Pass # TODO(ahe): Triage these tests. |
| 326 | 329 |
| 327 | 330 |
| 328 [ $compiler == dart2js && $runtime == ff ] | 331 [ $compiler == dart2js && $runtime == ff ] |
| (...skipping 20 matching lines...) Expand all Loading... |
| 349 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' | 352 call_through_null_getter_test: Fail # Expected: ObjectNotClosureException got: I
nstance of 'TypeError' |
| 350 closure3_test: Fail # Uncaught error: Instance of 'TypeError' | 353 closure3_test: Fail # Uncaught error: Instance of 'TypeError' |
| 351 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' | 354 method_invocation_test: Fail # Uncaught error: Instance of 'TypeError' |
| 352 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' | 355 null_pointer_exception_test: Fail # Uncaught error: Instance of 'TypeError' |
| 353 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' | 356 string_interpolate_npe_test: Fail # Uncaught error: Instance of 'TypeError' |
| 354 | 357 |
| 355 [ $compiler == dart2js && $runtime == ff && $system == windows ] | 358 [ $compiler == dart2js && $runtime == ff && $system == windows ] |
| 356 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. | 359 prefix_new_test: Fail # TODO(ahe): Enable wrapper-less tests on Firefox/Windows. |
| 357 typed_message_test: Fail # http://dartbug.com/5383 | 360 typed_message_test: Fail # http://dartbug.com/5383 |
| 358 first_class_types_test: Fail # http://dartbug.com/5523 | 361 first_class_types_test: Fail # http://dartbug.com/5523 |
| OLD | NEW |