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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
57 [ $runtime == ie9 ] | 57 [ $runtime == ie9 ] |
58 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 58 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
59 | 59 |
60 # Skip browser-specific Intl tests on VM | 60 # Skip browser-specific Intl tests on VM |
61 [ $runtime == vm ] | 61 [ $runtime == vm ] |
62 intl/test/find_default_locale_browser_test: Skip | 62 intl/test/find_default_locale_browser_test: Skip |
63 intl/test/date_time_format_http_request_test: Skip | 63 intl/test/date_time_format_http_request_test: Skip |
64 | 64 |
65 [ $runtime == vm && $system == windows ] | 65 [ $runtime == vm && $system == windows ] |
66 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 66 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
67 intl/test/message_extraction/message_extraction_test: Fail # dart:io bug with re ading encoding | |
Emily Fortuna
2013/03/15 00:27:21
can you annotate this with the issue number?
| |
67 | 68 |
68 # Skip http request tests on Dartium while resolving an odd | 69 # Skip http request tests on Dartium while resolving an odd |
69 # error there that causes the tests to timeout. | 70 # error there that causes the tests to timeout. |
70 [ $runtime == dartium || $runtime == drt ] | 71 [ $runtime == dartium || $runtime == drt ] |
71 intl/test/date_time_format_http_request_test: Skip | 72 intl/test/date_time_format_http_request_test: Skip |
72 | 73 |
73 [ $compiler == dart2js ] | 74 [ $compiler == dart2js ] |
74 # Skip intl_message tests that use mirrors on dart2js until it's been | 75 # Skip intl_message tests that use mirrors on dart2js until it's been |
75 # implemented there. | 76 # implemented there. |
76 serialization/test/serialization_test: Skip | 77 serialization/test/serialization_test: Skip |
(...skipping 27 matching lines...) Expand all Loading... | |
104 *: Skip | 105 *: Skip |
105 | 106 |
106 [ $arch == simarm ] | 107 [ $arch == simarm ] |
107 *: Skip | 108 *: Skip |
108 | 109 |
109 [ $arch == mips ] | 110 [ $arch == mips ] |
110 *: Skip | 111 *: Skip |
111 | 112 |
112 [ $arch == simmips ] | 113 [ $arch == simmips ] |
113 *: Skip | 114 *: Skip |
OLD | NEW |