| 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 intl/test/date_time_format_http_request_test: Skip | 57 intl/test/date_time_format_http_request_test: Skip |
| 58 | 58 |
| 59 [ $runtime == vm && $system == windows ] | 59 [ $runtime == vm && $system == windows ] |
| 60 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 60 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 61 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 61 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 62 | 62 |
| 63 [ $compiler == dart2js ] | 63 [ $compiler == dart2js ] |
| 64 analyzer_experimental/test/generated/ast_test: Fail | 64 analyzer_experimental/test/generated/ast_test: Fail |
| 65 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 65 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| 66 | 66 |
| 67 [ $compiler == dart2js && $runtime == d8 ] | 67 [ $compiler == dart2js && $runtime == d8 && $checked ] |
| 68 pathos/test/pathos_io_test: Fail # Issue 11258 | 68 pathos/test/pathos_io_test: Fail # Issue 11258 |
| 69 oauth2/*: Fail # Issue 11258 | 69 oauth2/*: Fail # Issue 11258 |
| 70 oauth2/test/utils_test: Pass | 70 oauth2/test/utils_test: Pass |
| 71 http/*: Fail # Issue 11258 | 71 http/*: Fail # Issue 11258 |
| 72 stack_trace/*: Fail # Issue 11258 | 72 stack_trace/*: Fail # Issue 11258 |
| 73 intl/test/date_time_format_file_odd_test: Fail # Issue 11258 | 73 intl/test/date_time_format_file_odd_test: Fail # Issue 11258 |
| 74 intl/test/date_time_format_file_even_test: Fail # Issue 11258 | 74 intl/test/date_time_format_file_even_test: Fail # Issue 11258 |
| 75 intl/test/message_extraction/message_extraction_test: Fail # Issue 11258 | 75 intl/test/message_extraction/message_extraction_test: Fail # Issue 11258 |
| 76 scheduled_test/*: Fail # Issue 11258 | 76 scheduled_test/*: Fail # Issue 11258 |
| 77 scheduled_test/test/substitute_future_test: Pass | 77 scheduled_test/test/substitute_future_test: Pass |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 *: Skip | 193 *: Skip |
| 194 | 194 |
| 195 [ $arch == simmips ] | 195 [ $arch == simmips ] |
| 196 *: Skip | 196 *: Skip |
| 197 | 197 |
| 198 # Skip serialization test that explicitly has no library declaration in the | 198 # Skip serialization test that explicitly has no library declaration in the |
| 199 # test on Dartium, which requires all tests to have a library. | 199 # test on Dartium, which requires all tests to have a library. |
| 200 [ $runtime == dartium || $runtime == drt ] | 200 [ $runtime == dartium || $runtime == drt ] |
| 201 serialization/test/no_library_test: Skip # Expected Failure | 201 serialization/test/no_library_test: Skip # Expected Failure |
| 202 | 202 |
| 203 [ $runtime == dartium ] | 203 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 204 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 204 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 205 | 205 |
| 206 # Skip mdv_observe tests on command line VM, they only run in the browser. | 206 # Skip mdv_observe tests on command line VM, they only run in the browser. |
| 207 [ $runtime == vm ] | 207 [ $runtime == vm ] |
| 208 mdv_observe: Skip | 208 mdv_observe: Skip |
| OLD | NEW |