| 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 | |
| 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 | |
| 8 # test only makes sense on runtimes that support 64-bit integer | |
| 9 # arithmetic natively, i.e., the VM. | |
| 10 fixnum/test/int_64_vm_test: Skip | |
| 11 | |
| 12 # Don't run any test-like files that show up in packages directories. It | 5 # Don't run any test-like files that show up in packages directories. It |
| 13 # shouldn't be necessary to run "pub install" in these packages, but if you do | 6 # shouldn't be necessary to run "pub install" in these packages, but if you do |
| 14 # it shouldn't break the tests. | 7 # it shouldn't break the tests. |
| 15 */packages/*/*: Skip | 8 */packages/*/*: Skip |
| 16 */*/packages/*/*: Skip | 9 */*/packages/*/*: Skip |
| 17 */*/*/packages/*/*: Skip | 10 */*/*/packages/*/*: Skip |
| 18 | 11 |
| 19 # Skip non-test files ending with "_test". | 12 # Skip non-test files ending with "_test". |
| 20 scheduled_test/lib/*: Skip | 13 scheduled_test/lib/*: Skip |
| 21 | 14 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] | 179 [ ($runtime == dartium || $runtime == drt) && $compiler == none ] |
| 187 path/test/dart2js_test: Fail, OK # Issue 6490 | 180 path/test/dart2js_test: Fail, OK # Issue 6490 |
| 188 | 181 |
| 189 # Skip mdv tests on command line VM, they only run in the browser. | 182 # Skip mdv tests on command line VM, they only run in the browser. |
| 190 [ $runtime == vm ] | 183 [ $runtime == vm ] |
| 191 mdv: Skip | 184 mdv: Skip |
| 192 | 185 |
| 193 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] | 186 [ $runtime == safari || $runtime == chrome || $runtime == ie9 || $runtime == ff
|| $runtime == dartium || $runtime == drt ] |
| 194 docgen/test/single_library_test: Skip # Uses dart:io | 187 docgen/test/single_library_test: Skip # Uses dart:io |
| 195 | 188 |
| OLD | NEW |