| 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 | 63 |
| 64 # We use pathos in the stack_trace tests. We can run them on dart2js when issue | 64 # We use pathos in the stack_trace tests. We can run them on dart2js when issue |
| 65 # 6943 is fixed. | 65 # 6943 is fixed. |
| 66 stack_trace/test/*: Skip | 66 stack_trace/test/*: Skip |
| 67 | 67 |
| 68 [ $runtime == opera && $compiler == dart2js ] | 68 [ $runtime == opera && $compiler == dart2js ] |
| 69 intl/test/find_default_locale_browser_test: Fail | 69 intl/test/find_default_locale_browser_test: Fail |
| 70 intl/test/date_time_format_http_request_test: Skip # Timeout. | 70 intl/test/date_time_format_http_request_test: Skip # Timeout. |
| 71 | 71 |
| 72 [ $runtime == ie9 ] | 72 [ $runtime == ie9 ] |
| 73 intl/test/date_time_format_http_request_test: Fail # Issue 8983 | 73 intl/test/date_time_format_http_request_test: Skip # Issue 8983 |
| 74 | 74 |
| 75 [ $runtime == safari ] | 75 [ $runtime == safari ] |
| 76 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. | 76 fixnum/test/int_64_test: Pass, Fail # Bug in JSC. |
| 77 | 77 |
| 78 # Skip browser-specific Intl tests on VM | 78 # Skip browser-specific Intl tests on VM |
| 79 [ $runtime == vm ] | 79 [ $runtime == vm ] |
| 80 intl/test/find_default_locale_browser_test: Skip | 80 intl/test/find_default_locale_browser_test: Skip |
| 81 intl/test/date_time_format_http_request_test: Skip | 81 intl/test/date_time_format_http_request_test: Skip |
| 82 | 82 |
| 83 [ $runtime == vm && $system == windows ] | 83 [ $runtime == vm && $system == windows ] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 [ $arch == mips ] | 127 [ $arch == mips ] |
| 128 *: Skip | 128 *: Skip |
| 129 | 129 |
| 130 [ $arch == simmips ] | 130 [ $arch == simmips ] |
| 131 *: Skip | 131 *: Skip |
| 132 | 132 |
| 133 # Skip serialization test that explicitly has no library declaration in the | 133 # Skip serialization test that explicitly has no library declaration in the |
| 134 # test on Dartium, which requires all tests to have a library. | 134 # test on Dartium, which requires all tests to have a library. |
| 135 [ $runtime == dartium || $runtime == drt ] | 135 [ $runtime == dartium || $runtime == drt ] |
| 136 serialization/test/no_library_test: Skip # Expected Failure | 136 serialization/test/no_library_test: Skip # Expected Failure |
| OLD | NEW |