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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 # We use pathos in the stack_trace tests. We can run them on dart2js when issue | 47 # We use pathos in the stack_trace tests. We can run them on dart2js when issue |
48 # 6943 is fixed. | 48 # 6943 is fixed. |
49 stack_trace/test/*: Skip | 49 stack_trace/test/*: Skip |
50 | 50 |
51 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that | 51 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that |
52 # overflow in JS (numbers slightly larger than | 52 # overflow in JS (numbers slightly larger than |
53 # 32 bits where we do bitwise operations). | 53 # 32 bits where we do bitwise operations). |
54 | 54 |
55 # Skip tests that use local file access if we're running in any browser | 55 # Skip tests that use local file access if we're running in any browser |
56 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt || $runtime == j
sshell] | 56 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == chromeOnAndroid || $runtime == safari || $r
untime == drt || $runtime == jsshell] |
57 http/test/*: Skip | 57 http/test/*: Skip |
58 oauth2/test/*: Skip | 58 oauth2/test/*: Skip |
59 pathos/test/*: Skip | 59 pathos/test/*: Skip |
60 intl/test/date_time_format_file_even_test: Skip | 60 intl/test/date_time_format_file_even_test: Skip |
61 intl/test/date_time_format_file_odd_test: Skip | 61 intl/test/date_time_format_file_odd_test: Skip |
62 intl/test/find_default_locale_standalone_test: Skip | 62 intl/test/find_default_locale_standalone_test: Skip |
63 intl/test/message_extraction/message_extraction_test: Skip | 63 intl/test/message_extraction/message_extraction_test: Skip |
64 analyzer_experimental/test/options_test: Skip # Imports dart:io. | 64 analyzer_experimental/test/options_test: Skip # Imports dart:io. |
65 analyzer_experimental/test/generated/ast_test: Skip # Imports dart:io. | 65 analyzer_experimental/test/generated/ast_test: Skip # Imports dart:io. |
66 analyzer_experimental/test/generated/element_test: Skip # Imports dart:io. | 66 analyzer_experimental/test/generated/element_test: Skip # Imports dart:io. |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 *: Skip | 153 *: Skip |
154 | 154 |
155 # Skip serialization test that explicitly has no library declaration in the | 155 # Skip serialization test that explicitly has no library declaration in the |
156 # test on Dartium, which requires all tests to have a library. | 156 # test on Dartium, which requires all tests to have a library. |
157 [ $runtime == dartium || $runtime == drt ] | 157 [ $runtime == dartium || $runtime == drt ] |
158 serialization/test/no_library_test: Skip # Expected Failure | 158 serialization/test/no_library_test: Skip # Expected Failure |
159 | 159 |
160 # Skip mdv_observe tests on command line VM, they only run in the browser. | 160 # Skip mdv_observe tests on command line VM, they only run in the browser. |
161 [ $runtime == vm ] | 161 [ $runtime == vm ] |
162 mdv_observe: Skip | 162 mdv_observe: Skip |
OLD | NEW |