| 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 timeout_test: Skip # Timeout test for testing the test runner. | 5 timeout_test: Skip # Timeout test for testing the test runner. |
| 6 fail_test: Fail, OK # Fails intentionally | 6 fail_test: Fail, OK # Fails intentionally |
| 7 out_of_memory_test: Skip # Issue 2345 | 7 out_of_memory_test: Skip # Issue 2345 |
| 8 | 8 |
| 9 package/invalid_uri_test: Fail, OK # Fails intentionally | 9 package/invalid_uri_test: Fail, OK # Fails intentionally |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 io/http_connection_header_test: Pass, Fail # Issue 2959 | 39 io/http_connection_header_test: Pass, Fail # Issue 2959 |
| 40 | 40 |
| 41 [ $compiler == none && $runtime == drt ] | 41 [ $compiler == none && $runtime == drt ] |
| 42 io/*: Skip # Don't run tests using dart:io in the browser | 42 io/*: Skip # Don't run tests using dart:io in the browser |
| 43 crypto/*: Skip # Don't run tests using dart:io in the browser | 43 crypto/*: Skip # Don't run tests using dart:io in the browser |
| 44 package/*: Skip # Do not run those in Dartium. | 44 package/*: Skip # Do not run those in Dartium. |
| 45 | 45 |
| 46 [ $compiler == dartc] | 46 [ $compiler == dartc] |
| 47 *: Skip | 47 *: Skip |
| 48 | 48 |
| 49 [ $compiler == frog || ($compiler == dart2js && $runtime == drt) ] | 49 [ $compiler == frog ] |
| 50 *: Skip | 50 *: Skip |
| 51 | 51 |
| 52 [ $arch == x64 ] | 52 [ $arch == x64 ] |
| 53 medium_integer_test: Fail # Issue 1146. | 53 medium_integer_test: Fail # Issue 1146. |
| 54 | 54 |
| 55 | 55 |
| 56 [ $arch == arm ] | 56 [ $arch == arm ] |
| 57 *: Skip | 57 *: Skip |
| 58 | 58 |
| 59 | 59 |
| 60 [ $arch == simarm ] | 60 [ $arch == simarm ] |
| 61 *: Skip | 61 *: Skip |
| 62 | 62 |
| 63 [ $compiler == dart2js ] | 63 [ $compiler == dart2js ] |
| 64 medium_integer_test: Fail, OK # cannot resolve type Mint | 64 medium_integer_test: Fail, OK # cannot resolve type Mint |
| 65 io/test_extension_test: Fail, OK # dart-ext:test_extension: Illegal argument(s):
dart-ext:test_extension | 65 io/test_extension_test: Fail, OK # dart-ext:test_extension: Illegal argument(s):
dart-ext:test_extension |
| 66 io/test_runner_test: Fail, OK # library not found dart:builtin | 66 io/test_runner_test: Fail, OK # library not found dart:builtin |
| 67 | 67 |
| 68 [ $compiler == dart2js && $runtime == d8 ] | 68 [ $compiler == dart2js && $runtime == d8 ] |
| 69 assert_test: Fail # Assert not implemented | 69 assert_test: Fail # Assert not implemented |
| 70 byte_array_test: Fail, OK # ByteArray | 70 byte_array_test: Fail, OK # ByteArray |
| 71 deoptimization_test: Fail, OK # Requires bigint. | 71 deoptimization_test: Fail, OK # Requires bigint. |
| 72 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. | 72 out_of_memory_test: Fail, OK # d8 handles much larger arrays than Dart VM. |
| 73 io/http_parser_test: Fail, OK # ByteArray | 73 io/http_parser_test: Fail, OK # ByteArray |
| 74 io/options_test: Fail, OK # Cannot pass options to d8. | 74 io/options_test: Fail, OK # Cannot pass options to d8. |
| 75 | 75 |
| 76 [ $compiler == dart2js && $runtime == none ] | 76 [ $compiler == dart2js && $runtime == none ] |
| 77 fail_test: Skip # fails only at runtime, overrides default expectation from stan
dalone.status | 77 fail_test: Skip # fails only at runtime, overrides default expectation from stan
dalone.status |
| 78 io/options_test: Fail | 78 io/options_test: Fail |
| 79 |
| 80 [$compiler == dart2js && $browser ] |
| 81 *: Skip |
| OLD | NEW |