| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 # otherwise be dart2js-compatible. | 53 # otherwise be dart2js-compatible. |
| 54 scheduled_test/test/*: Skip | 54 scheduled_test/test/*: Skip |
| 55 | 55 |
| 56 [ $runtime == opera && $compiler == dart2js ] | 56 [ $runtime == opera && $compiler == dart2js ] |
| 57 intl/test/find_default_locale_browser_test: Fail | 57 intl/test/find_default_locale_browser_test: Fail |
| 58 intl/test/date_time_format_http_request_test: Skip # Timeout. | 58 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 59 | 59 |
| 60 [ $runtime == ie9 ] | 60 [ $runtime == ie9 ] |
| 61 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 61 intl/test/date_time_format_http_request_test: Fail # Issue 8983 |
| 62 | 62 |
| 63 [ $runtime == safari ] |
| 64 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 65 |
| 63 # Skip browser-specific Intl tests on VM | 66 # Skip browser-specific Intl tests on VM |
| 64 [ $runtime == vm ] | 67 [ $runtime == vm ] |
| 65 intl/test/find_default_locale_browser_test: Skip | 68 intl/test/find_default_locale_browser_test: Skip |
| 66 intl/test/date_time_format_http_request_test: Skip | 69 intl/test/date_time_format_http_request_test: Skip |
| 67 | 70 |
| 68 [ $runtime == vm && $system == windows ] | 71 [ $runtime == vm && $system == windows ] |
| 69 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 72 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 70 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 73 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 71 | 74 |
| 72 # Skip http request tests on Dartium while resolving an odd | 75 # Skip http request tests on Dartium while resolving an odd |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 *: Skip | 111 *: Skip |
| 109 | 112 |
| 110 [ $arch == simarm ] | 113 [ $arch == simarm ] |
| 111 *: Skip | 114 *: Skip |
| 112 | 115 |
| 113 [ $arch == mips ] | 116 [ $arch == mips ] |
| 114 *: Skip | 117 *: Skip |
| 115 | 118 |
| 116 [ $arch == simmips ] | 119 [ $arch == simmips ] |
| 117 *: Skip | 120 *: Skip |
| OLD | NEW |