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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 # Don't compile tests that use dart:io to JS | 31 # Don't compile tests that use dart:io to JS |
32 [ $compiler == dart2js || $compiler == dart2dart ] | 32 [ $compiler == dart2js || $compiler == dart2dart ] |
33 http/test/*: Skip | 33 http/test/*: Skip |
34 oauth2/test/*: Skip | 34 oauth2/test/*: Skip |
35 pathos/test/*: Skip | 35 pathos/test/*: Skip |
36 | 36 |
37 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would | 37 # Issue 8440 forces us to use pathos in the scheduled_test tests, which would |
38 # otherwise be dart2js-compatible. | 38 # otherwise be dart2js-compatible. |
39 scheduled_test/test/*: Skip | 39 scheduled_test/test/*: Skip |
| 40 |
| 41 # We use pathos in the stack_trace tests. We can run them on dart2js when issue |
| 42 # 6943 is fixed. |
| 43 stack_trace/test/*: Skip |
| 44 |
40 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that | 45 source_maps/test/vlq_test: Fail # A VLQ test checks for large numbers that |
41 # overflow in JS (numbers slightly larger than | 46 # overflow in JS (numbers slightly larger than |
42 # 32 bits where we do bitwise operations). | 47 # 32 bits where we do bitwise operations). |
43 | 48 |
44 # Skip tests that use local file access if we're running in any browser | 49 # Skip tests that use local file access if we're running in any browser |
45 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt || $runtime == j
sshell] | 50 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt || $runtime == j
sshell] |
46 http/test/*: Skip | 51 http/test/*: Skip |
47 oauth2/test/*: Skip | 52 oauth2/test/*: Skip |
48 pathos/test/*: Skip | 53 pathos/test/*: Skip |
49 intl/test/date_time_format_file_even_test: Skip | 54 intl/test/date_time_format_file_even_test: Skip |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 [ $arch == mips ] | 130 [ $arch == mips ] |
126 *: Skip | 131 *: Skip |
127 | 132 |
128 [ $arch == simmips ] | 133 [ $arch == simmips ] |
129 *: Skip | 134 *: Skip |
130 | 135 |
131 # Skip serialization test that explicitly has no library declaration in the | 136 # Skip serialization test that explicitly has no library declaration in the |
132 # test on Dartium, which requires all tests to have a library. | 137 # test on Dartium, which requires all tests to have a library. |
133 [ $runtime == dartium || $runtime == drt ] | 138 [ $runtime == dartium || $runtime == drt ] |
134 serialization/test/no_library_test: Skip # Expected Failure | 139 serialization/test/no_library_test: Skip # Expected Failure |
OLD | NEW |