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 ] | 5 [ $compiler == dart2js ] |
6 getter_setter_in_lib_test: Fail # Issue 23288 | 6 getter_setter_in_lib_test: Fail # Issue 23288 |
7 method_name_test: Fail # issue 25574 | 7 method_name_test: Fail # issue 25574 |
8 | 8 |
9 async_star_cancel_while_paused_test: RuntimeError # Issue 22853 | 9 async_star_cancel_while_paused_test: RuntimeError # Issue 22853 |
10 async_star_await_pauses_test: Fail, Timeout # Issue 22853 | 10 async_star_await_pauses_test: Fail, Timeout # Issue 22853 |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
310 | 310 |
311 [ $compiler == dart2js && $cps_ir && $host_checked == false ] | 311 [ $compiler == dart2js && $cps_ir && $host_checked == false ] |
312 regress_21795_test: Pass, RuntimeError # Due to inlining? | 312 regress_21795_test: Pass, RuntimeError # Due to inlining? |
313 | 313 |
314 [ $compiler == dart2js && $cps_ir && $host_checked ] | 314 [ $compiler == dart2js && $cps_ir && $host_checked ] |
315 async_throw_in_catch_test/forceAwait: Crash # Issue 24485 | 315 async_throw_in_catch_test/forceAwait: Crash # Issue 24485 |
316 async_throw_in_catch_test/none: Crash # Issue 24485 | 316 async_throw_in_catch_test/none: Crash # Issue 24485 |
317 execute_finally9_test: Crash # Issue 24485 | 317 execute_finally9_test: Crash # Issue 24485 |
318 regress_21795_test: Crash # Issue 24485 | 318 regress_21795_test: Crash # Issue 24485 |
319 regress_23537_test: Crash # Issue 24485 | 319 regress_23537_test: Crash # Issue 24485 |
320 | |
321 [ $compiler == dart2js ] | |
322 # Experimental feature: Generic methods. | |
floitsch
2016/02/22 12:45:20
Make the test add the flag.
eernst
2016/02/22 18:02:51
How can the flag be added?
floitsch
2016/02/22 18:40:27
// DartOptions=--generic-methods
see config_import
| |
323 generic_functions_test: CompileTimeError # Disabled unless flag given. | |
324 generic_methods_test: CompileTimeError # Disabled unless flag given. | |
OLD | NEW |