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 |
11 | 11 |
12 http/test/http_test: Skip # Issue 6521, test is flaky | |
13 | |
14 [$compiler == dart2dart] | 12 [$compiler == dart2dart] |
15 *: Skip | 13 *: Skip |
16 | 14 |
17 # Don't compiile tests that use dart:io to JS | 15 # Don't compiile tests that use dart:io to JS |
18 [ $compiler == dart2js || $compiler == dart2dart || $compiler == dartc ] | 16 [ $compiler == dart2js || $compiler == dart2dart || $compiler == dartc ] |
19 http/test/*: Skip | 17 http/test/*: Skip |
20 | 18 |
21 # Skip tests that use local file access if we're running in any browser | 19 # Skip tests that use local file access if we're running in any browser |
22 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt ] | 20 [ $runtime == opera || $runtime == ff || $runtime == ie9 || $runtime == dartium
|| $runtime == chrome || $runtime == safari || $runtime == drt ] |
23 http/test/*: Skip | 21 http/test/*: Skip |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 args/test/args_test: Fail, OK | 56 args/test/args_test: Fail, OK |
59 | 57 |
60 | 58 |
61 | 59 |
62 [ $compiler == dart2js || $compiler == dartc ] | 60 [ $compiler == dart2js || $compiler == dartc ] |
63 unittest/test/instance_test: Skip | 61 unittest/test/instance_test: Skip |
64 | 62 |
65 [ $compiler == none && $runtime == drt ] | 63 [ $compiler == none && $runtime == drt ] |
66 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. | 64 dartdoc/test/dartdoc_test: Skip # See dartbug.com/4541. |
67 | 65 |
OLD | NEW |