| 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 # Run this test manually to verify that the fixnum library produces | 5 # Run this test manually to verify that the fixnum library produces |
| 6 # the same results as native ints on a set of directed and random inputs. | 6 # the same results as native ints on a set of directed and random inputs. |
| 7 # Skip it when running automated tests because it times out. This | 7 # Skip it when running automated tests because it times out. This |
| 8 # test only makes sense on runtimes that support 64-bit integer | 8 # test only makes sense on runtimes that support 64-bit integer |
| 9 # arithmetic natively, i.e., the VM. | 9 # arithmetic natively, i.e., the VM. |
| 10 fixnum/test/int_64_vm_test: Skip | 10 fixnum/test/int_64_vm_test: Skip |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 63 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 64 | 64 |
| 65 # Skip http request tests on Dartium while resolving an odd | 65 # Skip http request tests on Dartium while resolving an odd |
| 66 # error there that causes the tests to timeout. | 66 # error there that causes the tests to timeout. |
| 67 [ $runtime == dartium || $runtime == drt ] | 67 [ $runtime == dartium || $runtime == drt ] |
| 68 intl/test/date_time_format_http_request_test: Skip | 68 intl/test/date_time_format_http_request_test: Skip |
| 69 | 69 |
| 70 [ $compiler == dart2js ] | 70 [ $compiler == dart2js ] |
| 71 # Skip intl_message tests that use mirrors on dart2js until it's been | 71 # Skip intl_message tests that use mirrors on dart2js until it's been |
| 72 # implemented there. | 72 # implemented there. |
| 73 intl/test/intl_message_test: Skip | |
| 74 intl/test/intl_message_basic_example_test: Skip | |
| 75 serialization/test/serialization_test: Skip | 73 serialization/test/serialization_test: Skip |
| 76 analyzer-experimental/test/generated/ast_test: Skip | 74 analyzer-experimental/test/generated/ast_test: Skip |
| 77 analyzer-experimental/test/generated/element_test: Skip | 75 analyzer-experimental/test/generated/element_test: Skip |
| 78 analyzer-experimental/test/generated/parser_test: Skip | 76 analyzer-experimental/test/generated/parser_test: Skip |
| 79 analyzer-experimental/test/generated/resolver_test: Skip | 77 analyzer-experimental/test/generated/resolver_test: Skip |
| 80 analyzer-experimental/test/generated/scanner_test: Skip | 78 analyzer-experimental/test/generated/scanner_test: Skip |
| 81 | 79 |
| 82 [ $compiler == dartc ] | 80 [ $compiler == dartc ] |
| 83 unittest/test/mock_regexp_negative_test: Fail | 81 unittest/test/mock_regexp_negative_test: Fail |
| 84 unittest/test/mock_stepwise_negative_test: Fail | 82 unittest/test/mock_stepwise_negative_test: Fail |
| (...skipping 12 matching lines...) Expand all Loading... |
| 97 *: Skip | 95 *: Skip |
| 98 | 96 |
| 99 [ $arch == simarm ] | 97 [ $arch == simarm ] |
| 100 *: Skip | 98 *: Skip |
| 101 | 99 |
| 102 [ $arch == mips ] | 100 [ $arch == mips ] |
| 103 *: Skip | 101 *: Skip |
| 104 | 102 |
| 105 [ $arch == simmips ] | 103 [ $arch == simmips ] |
| 106 *: Skip | 104 *: Skip |
| OLD | NEW |