| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 intl/test/date_time_format_http_request_test: Skip | 59 intl/test/date_time_format_http_request_test: Skip |
| 60 | 60 |
| 61 [ $runtime == vm && $system == windows ] | 61 [ $runtime == vm && $system == windows ] |
| 62 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 62 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
| 63 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 63 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
| 64 | 64 |
| 65 [ $compiler == dart2js ] | 65 [ $compiler == dart2js ] |
| 66 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 | 66 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 |
| 67 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 67 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| 68 | 68 |
| 69 [ $compiler == dart2js && $checked ] |
| 70 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. |
| 71 |
| 69 [ $compiler == dartc ] | 72 [ $compiler == dartc ] |
| 70 unittest/test/mock_regexp_negative_test: Fail | 73 unittest/test/mock_regexp_negative_test: Fail |
| 71 unittest/test/mock_stepwise_negative_test: Fail | 74 unittest/test/mock_stepwise_negative_test: Fail |
| 72 | 75 |
| 73 [ $compiler == dartanalyzer ] | 76 [ $compiler == dartanalyzer ] |
| 74 unittest/test/mock_regexp_negative_test: fail | 77 unittest/test/mock_regexp_negative_test: fail |
| 75 unittest/test/mock_stepwise_negative_test: fail | 78 unittest/test/mock_stepwise_negative_test: fail |
| 76 | 79 |
| 77 [ $compiler == dart2analyzer ] | 80 [ $compiler == dart2analyzer ] |
| 78 unittest/test/mock_regexp_negative_test: fail | 81 unittest/test/mock_regexp_negative_test: fail |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 # test on Dartium, which requires all tests to have a library. | 185 # test on Dartium, which requires all tests to have a library. |
| 183 [ $runtime == dartium || $runtime == drt ] | 186 [ $runtime == dartium || $runtime == drt ] |
| 184 serialization/test/no_library_test: Skip # Expected Failure | 187 serialization/test/no_library_test: Skip # Expected Failure |
| 185 | 188 |
| 186 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 189 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 187 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 190 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
| 188 | 191 |
| 189 # Skip mdv_observe tests on command line VM, they only run in the browser. | 192 # Skip mdv_observe tests on command line VM, they only run in the browser. |
| 190 [ $runtime == vm ] | 193 [ $runtime == vm ] |
| 191 mdv_observe: Skip | 194 mdv_observe: Skip |
| OLD | NEW |