Chromium Code Reviews| 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 # Skip non-test files ending with "_test". | |
| 13 scheduled_test/lib/*: Skip | |
|
ricow1
2013/03/18 11:34:53
I don't get this, why do we call it _test if it is
nweiz
2013/03/18 18:37:55
It's a library for writing tests.
| |
| 14 | |
| 12 [$compiler == dart2dart] | 15 [$compiler == dart2dart] |
| 13 *: Skip | 16 *: Skip |
| 14 | 17 |
| 15 # Don't compile tests that use dart:io to JS | 18 # Don't compile tests that use dart:io to JS |
| 16 [ $compiler == dart2js || $compiler == dart2dart ] | 19 [ $compiler == dart2js || $compiler == dart2dart ] |
| 17 http/test/*: Skip | 20 http/test/*: Skip |
| 18 oauth2/test/*: Skip | 21 oauth2/test/*: Skip |
| 19 path/test/*: Skip | 22 path/test/*: Skip |
| 20 | 23 |
| 21 # Skip tests that use local file access if we're running in any browser | 24 # Skip tests that use local file access if we're running in any browser |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 *: Skip | 77 *: Skip |
| 75 | 78 |
| 76 [ $arch == simarm ] | 79 [ $arch == simarm ] |
| 77 *: Skip | 80 *: Skip |
| 78 | 81 |
| 79 [ $arch == mips ] | 82 [ $arch == mips ] |
| 80 *: Skip | 83 *: Skip |
| 81 | 84 |
| 82 [ $arch == simmips ] | 85 [ $arch == simmips ] |
| 83 *: Skip | 86 *: Skip |
| OLD | NEW |