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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 intl/test/find_default_locale_browser_test: Skip | 65 intl/test/find_default_locale_browser_test: Skip |
66 intl/test/date_time_format_http_request_test: Skip | 66 intl/test/date_time_format_http_request_test: Skip |
67 | 67 |
68 [ $runtime == vm && $system == windows ] | 68 [ $runtime == vm && $system == windows ] |
69 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 | 69 intl/test/find_default_locale_standalone_test: Fail # Issue 8110 |
70 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 | 70 intl/test/message_extraction/message_extraction_test: Fail # Issue 9167 |
71 | 71 |
72 [ $compiler == dart2js ] | 72 [ $compiler == dart2js ] |
73 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 | 73 analyzer_experimental/test/generated/ast_test: Fail, Slow # Issue 11230 |
74 unittest/test/instance_test: Fail # http://dartbug.com/11191 | 74 unittest/test/instance_test: Fail # http://dartbug.com/11191 |
| 75 stack_trace/test/trace_test: Pass, Timeout # Issue 11645 |
75 | 76 |
76 [ $compiler == dart2js && $checked ] | 77 [ $compiler == dart2js && $checked ] |
77 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. | 78 mdv_observe/test/observable_map_test: Fail # BUG(11480): Triage. |
78 | 79 |
79 [ $compiler == dartanalyzer || $compiler == dart2analyzer] | 80 [ $compiler == dartanalyzer || $compiler == dart2analyzer] |
80 # These tests are runtime negative but statically positive, so we skip | 81 # These tests are runtime negative but statically positive, so we skip |
81 # them in the analyzer. | 82 # them in the analyzer. |
82 unittest/test/mock_regexp_negative_test: Skip | 83 unittest/test/mock_regexp_negative_test: Skip |
83 unittest/test/mock_stepwise_negative_test: Skip | 84 unittest/test/mock_stepwise_negative_test: Skip |
84 | 85 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 189 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
189 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 | 190 pathos/test/pathos_dart2js_test: Fail, OK # Issue 6490 |
190 | 191 |
191 # Skip mdv tests on command line VM, they only run in the browser. | 192 # Skip mdv tests on command line VM, they only run in the browser. |
192 [ $runtime == vm ] | 193 [ $runtime == vm ] |
193 mdv: Skip | 194 mdv: Skip |
194 | 195 |
195 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 196 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
196 docgen/test/single_library_test: Skip # Uses dart:io | 197 docgen/test/single_library_test: Skip # Uses dart:io |
197 | 198 |
OLD | NEW |