Chromium Code Reviews| 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 math/*: Skip | 6 math/*: Skip |
| 7 mirrors/*: Skip | 7 mirrors/*: Skip |
| 8 | 8 |
| 9 [ $compiler == dart2js && $browser ] | 9 [ $compiler == dart2js && $browser ] |
| 10 crypto/sha256_test: Slow, Pass | 10 crypto/sha256_test: Slow, Pass |
| 11 crypto/sha1_test: Slow, Pass | 11 crypto/sha1_test: Slow, Pass |
| 12 | 12 |
| 13 [ $compiler == dart2dart ] | 13 [ $compiler == dart2dart ] |
| 14 # Skip until we stabilize language tests. | 14 # Skip until we stabilize language tests. |
| 15 *: Skip | 15 *: Skip |
| 16 | 16 |
| 17 [ $compiler == dartc ] | 17 [ $compiler == dartc ] |
| 18 # lib issue 6322 | 18 # lib issue 6322 |
| 19 crypto/hmac_sha1_test: Fail | 19 crypto/hmac_sha1_test: Fail |
| 20 crypto/hmac_sha256_test: Fail | 20 crypto/hmac_sha256_test: Fail |
| 21 | 21 |
| 22 [ $runtime == d8 ] | |
| 23 # The d8 runtime does not support Timer. | |
| 24 async/future2_test: Fail | |
|
floitsch
2013/01/07 13:52:22
Karl should have taken care of these.
| |
| 25 async/futures_test: Fail | |
| 26 async/future_delayed_error_test: Fail | |
| 27 async/future_test: Fail | |
| 28 async/merge_stream_test: Fail | |
| 29 async/slow_consumer2_test: Fail | |
| 30 async/slow_consumer_test: Fail | |
| 31 async/stream_controller_async_test: Fail | |
| 32 async/stream_min_max_test: Fail | |
| 33 async/stream_single_test: Fail | |
| 34 | |
| 35 [ $compiler == dart2js && $runtime == d8 && $checked ] | |
| 36 # Some bug related to assigning function to typedef-typed field. | |
| 37 async/stream_controller_test: Fail | |
| OLD | NEW |